export function Name()

in src/components/typography.tsx [92:111]


export function Name(props: Props) {
  const {children, style} = props;
  const {colors} = useTheme();

  const nameStyle = useMemo<StyleProp<TextStyle>>(
    () => [
      {
        fontSize: normalize(14),
        fontWeight: 'bold',
        color: colors.text,
        fontStyle: 'normal',
        letterSpacing: 1.15,
      },
      style,
    ],
    [colors.text, style],
  );

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