11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { RotatingText } from '@/registry/text/rotating';
|
|
|
|
export const RotatingTextDemo = () => {
|
|
return (
|
|
<RotatingText
|
|
className="text-4xl font-semibold"
|
|
text={['Rotating', 'Text', 'Demo']}
|
|
/>
|
|
);
|
|
};
|