import React from "react"; import { colorClassesMapping, IconProps, iconSize } from "./Icon"; import { cls } from "../util"; export function HandleIcon({ size = 24, color, className, onClick, style }: IconProps) { const px = typeof size === "number" ? size : iconSize[size]; return ; }