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