1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 22:28:30 -04:00
jarv.is/components/HorizontalRule/HorizontalRule.tsx

11 lines
238 B
TypeScript

import { styled, theme } from "../../lib/styles/stitches.config";
const HorizontalRule = styled("hr", {
margin: "1.5em auto",
height: "0.175em",
border: 0,
backgroundColor: theme.colors.light,
});
export default HorizontalRule;