mirror of
https://github.com/Vikeo/LifeTrinket.git
synced 2025-11-11 21:56:25 +00:00
15 lines
255 B
TypeScript
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 }}
|
|
/>
|
|
);
|
|
};
|