@radix-ui/themes
Version:
[](https://radix-ui.com/themes)
13 lines (10 loc) • 309 B
text/typescript
import { widthPropDefs, heightPropDefs } from '../props/index.js';
import type { PropDef } from '../props/index.js';
const skeletonPropDefs = {
loading: { type: 'boolean', default: true },
...widthPropDefs,
...heightPropDefs,
} satisfies {
loading: PropDef<boolean>;
};
export { skeletonPropDefs };