fbredius/storybook

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

Summary

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

export const H5 = styled.h5(withReset, headerCommon, ({ theme }) => ({
  fontSize: `${theme.typography.size.s2}px`,
}));