export function Headline()

in src/components/typography.tsx [34:46]


export function Headline(props: Props) {
  const {children, style} = props;
  const {colors} = useTheme();
  const headlineStyle = useMemo<StyleProp<TextStyle>>(
    () => [
      {fontSize: normalize(20), fontWeight: 'bold', color: colors.text},
      style,
    ],
    [colors.text, style],
  );

  return <ELText style={headlineStyle}>{children}</ELText>;
}