mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 02:18:29 -04:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import Code from "../Code";
|
|
import { styled } from "../../lib/styles/stitches.config";
|
|
|
|
const CodeInline = styled(Code, {
|
|
padding: "0.175em 0.3em",
|
|
fontSize: "0.975em",
|
|
pageBreakInside: "avoid",
|
|
});
|
|
|
|
export default CodeInline;
|