mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 03:58:28 -04:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import Code from "../Code";
|
|
import { styled } from "../../lib/styles/stitches.config";
|
|
|
|
const CodeInline = styled(Code, {
|
|
padding: "0.2em 0.3em",
|
|
pageBreakInside: "avoid",
|
|
});
|
|
|
|
export default CodeInline;
|