UNPKG

@radix-ui/themes

Version:

[![Radix Themes Logo](https://radix-ui.com/social/themes.png)](https://radix-ui.com/themes)

15 lines (11 loc) 362 B
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 };