import { Box, type BoxProps } from "@chakra-ui/react" export const Ol = (props: BoxProps) => { return ( li": { paddingInlineStart: "0.4em", listStyleType: "decimal", "&::marker": { color: "fg.subtle", }, }, "& ol, & ul": { marginTop: "0.5em", marginBottom: "0.5em", }, }} {...props} /> ) } export const Ul = (props: BoxProps) => { return ( li": { paddingInlineStart: "0.4em", listStyleType: "disc", "&::marker": { color: "fg.subtle", }, }, "& ol, & ul": { marginTop: "0.5em", marginBottom: "0.5em", }, }} {...props} /> ) } export const Li = (props: BoxProps) => { return }