import { component, type Define } from '@sigx/lynx'; export type SkeletonProps = & Define.Prop<'width', number | string, false> & Define.Prop<'height', number | string, false> & Define.Prop<'circle', boolean, false> & Define.Prop<'class', string, false>; /** Placeholder block with an opacity pulse; `circle` makes a round avatar stand-in. */ export const Skeleton = component(({ props }) => { return () => { const style: Record = {}; if (props.width != null) style.width = props.width; if (props.height != null) style.height = props.height; if (props.circle) { const size = props.width ?? props.height ?? 48; style.width = size; style.height = size; style.borderRadius = typeof size === 'number' ? size / 2 : '50%'; } return ; }; });