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

11 lines
236 B
TypeScript

import { styled } from "../../lib/styles/stitches.config";
const Blockquote = styled("blockquote", {
marginLeft: 0,
paddingLeft: "1.25em",
borderLeft: "0.25em solid $link",
color: "$mediumDark",
});
export default Blockquote;