import { NCoreUIKitTheme } from "../../../core/hooks"; import { type INCoreUIKitIconProps } from "../../../types"; import { Path, Svg } from "react-native-svg"; const SvgCleanIcon = ({ color = "default", customColor, size = 20, ...props }: INCoreUIKitIconProps) => { const { colors } = NCoreUIKitTheme.useContext(); const pathScale = 27 / size; return ; }; export default SvgCleanIcon;