type ColorProps = { hex: string; noText?: boolean; }; export const Color = (props: ColorProps) => { const { hex, noText = false } = props; console.log(props); return ( {noText ? '' : hex} ); };