12345678910111213141516171819202122232425 |
- import React from 'react';
- import { Element } from './styled';
- export type Props = {
- variant: 'text' | 'rect' | 'circle';
- height?: number | string;
- width?: number | string;
- };
- const Skeleton: React.FC<Props> = ({
- variant = 'text',
- height = 'auto',
- width = 'auto',
- }: Props) => (
- <Element
- variant={variant}
- style={{
- height,
- width,
- }}
- />
- );
- export default Skeleton;
|