import * as React from 'react'; import classNames from 'classnames'; type SizeType = 'normal' | 'small' | 'large' | 'full'; type SeparatorVerticalColorType = 'white' | 'gray-50' | 'gray-40'; export const SIZE = { NORMAL: 'normal', SMALL: 'small', LARGE: 'large', FULL: 'full', } as const; export const COLORS_MAP = { white: 'white', 'gray-50': 'gray-50', 'gray-40': 'gray-40', } as const; export type SeparatorVerticalPropsType = { size?: SizeType; color?: SeparatorVerticalColorType; className?: string; } & Omit, 'size' | 'color' | 'className'>; const Separator = ({ size = SIZE.NORMAL, color = COLORS_MAP['gray-40'], className, ...props }: SeparatorVerticalPropsType) => { const separatorClass = classNames( 'sg-vertical-separator', { [`sg-vertical-separator--${size}`]: size !== SIZE.NORMAL, [`sg-vertical-separator--${String(color)}`]: color, }, className ); return (
); }; export default Separator;