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

11 lines
268 B
TypeScript

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