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