File size: 185 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { TextBlur } from '../text-blur';
export function TextSkeleton( { length }: { length: number } ) {
const text = 'X'.repeat( length );
return <TextBlur>{ text }</TextBlur>;
}
|