This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/components/design/Divider/Divider.tsx

8 lines
236 B
TypeScript
Raw Normal View History

export const Divider: React.FC = () => {
return (
<div className='relative mb-3 flex h-[2px] w-full justify-center'>
<div className='absolute h-[2px] w-8/12 rounded-full bg-gray-600 dark:bg-white/20'></div>
</div>
)
}