export const H3 = styled.h3`
  color: ${(props) =>
    // @ts-expect-error TS(2538) FIXME: Type 'undefined' cannot be used as an index type.
    textColors[props.color]};
  font-family: ${fontFamily};