import { GlobalProps } from '../../shared/global'; import { ColorKeyword } from '../../shared/scales'; export interface DividerProps extends GlobalProps { /** * Specify the direction of the divider. * * An 'inline' divider separates blocks of content. * In a left-to-right or right-to-left writing mode, this would typically be a horizontal line. * * A 'block' divider separates items within the current line of content. * In a left-to-right or right-to-left writing mode, this would typically be a vertical line. * * @default 'inline' */ direction?: 'inline' | 'block'; /** * Modify the color to be more or less intense. * * @default 'base' */ color?: ColorKeyword; }