1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 09:25:22 -04:00
jarv.is/components/HorizontalRule/HorizontalRule.tsx
2022-03-03 09:18:26 -05:00

11 lines
221 B
TypeScript

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