/** * Props for the Separator component */ export default interface ISeparatorProps { /** * The orientation of the separator * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; }