/// import { ContextColor, ContextColorString, ContextBorderRadius, ContextBorderRadiusString } from "../type"; import { IconProps } from "../../../lib/icons/type"; export interface Style { color: ContextColor | ContextColorString; rounded?: ContextBorderRadius | ContextBorderRadiusString; } export interface Props extends Partial