@chakra-ui/react
Version:
Responsive and accessible React UI components built with React and Emotion
19 lines (16 loc) • 406 B
JavaScript
import { defineRecipe } from '../../styled-system/config.js';
import { badgeRecipe } from './badge.js';
const { variants, defaultVariants } = badgeRecipe;
const codeRecipe = defineRecipe({
className: "chakra-code",
base: {
fontFamily: "mono",
alignItems: "center",
display: "inline-flex",
borderRadius: "l2"
},
variants,
defaultVariants
});
export { codeRecipe };
;