fbredius/storybook

View on GitHub
lib/components/src/typography/elements/H1.tsx

Summary

Maintainability
A
30 mins
Test Coverage
import { styled } from '@storybook/theming';
import { withReset, headerCommon } from '../lib/common';

export const H1 = styled.h1(withReset, headerCommon, ({ theme }) => ({
  fontSize: `${theme.typography.size.l1}px`,
  fontWeight: theme.typography.weight.black,
}));