import { cssProperty } from '../utils/style'; import { Property } from 'csstype'; import { ColorPropertyTheme, TLength } from './typings'; import { colorFormatter } from '../utils/formatter'; export const fill = cssProperty(null, colorFormatter('fill')); export const stroke = cssProperty(null, colorFormatter('stroke')); export const strokeWidth = cssProperty>('stroke-width');