import { iconVariants } from '../../variants' import type { IconProps } from '../../icon' import { getIconAriaProps } from '../../utils' export default function IceMachineIcon({ className, size = 24, color, ...props }: IconProps) { const classNames = iconVariants({ className, color }) const ariaProps = getIconAriaProps(props) return ( ) }