import { mode } from '../tools'; function baseStyle(props: Record) { return { borderWidth: 1, bg: mode('gray.600', 'gray.200')(props), }; } export default { baseStyle, };