import styles from './styles.module.scss' export type ColorOption = | 'base' | 'shade1' | 'shade2' | 'shade3' | 'contrast' | 'contrastShade1' type CrossProps = { color?: ColorOption } export const Cross = ({ color = 'base' }: CrossProps) => { const style = styles[color] return ( ) }