export interface DividerProps { /** 分隔線方向,預設為 'horizontal' */ orientation?: 'horizontal' | 'vertical'; /** 自定義類名 */ class?: string; /** 分隔線顏色(CSS color string) */ color?: string; }