Files
ColdBreeze-chat-web/src/widget/Popup/Line.tsx
T
2022-10-27 21:21:54 +08:00

15 lines
254 B
TypeScript

import clsx from 'clsx';
type Props = {
thin?: boolean
};
const Index = ({ thin = false }: Props) => {
const h = thin ? 'h-[1px]' : 'h-0.5';
return (
<hr className={clsx('w-full bg-gray-300 border-none', h)} />
);
};
export default Index;