feat: widget sdk
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user