/** @jsxRuntime classic */ /** @jsx jsx */ import { type ReactNode } from 'react' import { jsx } from '@keystone-ui/core' type SvgProps = { children: ReactNode, size: string | number, stroke?: string, fill?: string } const Svg = ({ children, size, stroke = 'none', fill = 'none' }: SvgProps) => ( ) const checkSizeMap = { small: 14, medium: 18, large: 24, } export const CheckIcon = ({ size = 'medium' }: { size?: keyof typeof checkSizeMap }) => { return ( ) } const dotSizeMap = { small: 12, medium: 16, large: 20, } export const DotIcon = ({ size = 'medium' }: { size?: keyof typeof dotSizeMap }) => { return ( ) }