aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Divider/Divider.tsx
blob: 55e6844493c826096893539384d4820622ff4a7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
interface DividerProps {
    text: string;
}

const Divider = (props: DividerProps) => {
    return (
        <div className="flex flex-row items-center justify-center bg-black h-24 mt-8">
            <div className="px-2 text-white text-4xl font-extrabold">{props.text}</div>
        </div>
    )
}
export default Divider;
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage