Components
Loading preview...
Here is Draw Random Underline component
@osmosupply
npx shadcn@latest add https://21st.dev/r/osmosupply/draw-random-underline/* src/demos/default.tsx */
import { UnderlineAnimation } from '@/components/ui/draw-random-underline';
const DemoPage: React.FC = () => {
return (
<div style={{ position: 'relative', width: '100%', minHeight: '100vh', display: 'flex', flexDirection: 'column' }}>
<UnderlineAnimation />
</div>
);
};
export default DemoPage;