Files
LifeTrinket/src/Components/Misc/Separator.tsx
Viktor Rådberg bcf2a0a840 new colors
2024-01-14 13:14:33 +01:00

15 lines
255 B
TypeScript

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