12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
import { SkeletonProps } from './skeleton.js';
|
|
import '@chakra-ui/system';
|
|
|
|
/**
|
|
* `SkeletonCircle` is used to display the loading state in the form of a circular avatar.
|
|
*
|
|
* @see Docs https://chakra-ui.com/docs/components/skeleton
|
|
*/
|
|
declare const SkeletonCircle: React.FC<SkeletonProps>;
|
|
|
|
export { SkeletonCircle };
|