export default function Example() {
  const FontSizeExample = styled("p", {
    fontFamily: theme.fonts.headline,
    fontSize: theme.fontSizes["200"], // font size example
    color: theme.colors.primary,
  });

  return <FontSizeExample>Headline</FontSizeExample>;
}