fbredius/storybook

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

Summary

Maintainability
A
0 mins
Test Coverage
import { styled } from '@storybook/theming';

export const HR = styled.hr(({ theme }) => ({
  border: '0 none',
  borderTop: `1px solid ${theme.appBorderColor}`,
  height: 4,
  padding: 0,
}));