mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 09:25:22 -04:00
11 lines
221 B
TypeScript
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;
|