mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 17:50:29 -04:00
11 lines
236 B
TypeScript
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;
|