fbredius/storybook

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

Summary

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

export const H4 = styled.h4(withReset, headerCommon, ({ theme }) => ({
  fontSize: `${theme.typography.size.s3}px`,
}));