Files
LifeTrinket/src/Components/Misc/Separator.tsx
Viktor Rådberg 4f231ba6f4 finish up tailwind
2024-01-13 14:50:36 +01:00

15 lines
255 B
TypeScript

export const Separator = ({
width = '100%',
height = '100%',
}: {
width?: string;
height?: string;
}) => {
return (
<div
className={`bg-common-black bg-opacity-30 rounded-full mt-2 mb-2`}
style={{ width, height }}
/>
);
};