UNPKG

box-ui-elements-mlh

Version:
12 lines (11 loc) 385 B
import * as React from 'react'; import { Icon } from '../iconTypes'; interface IconCloudProps extends Icon { /** An object describing the filter effects for the icon */ filter?: { definition?: React.ReactNode; id?: string; }; } declare const IconCloud: ({ className, filter, height, title, width }: IconCloudProps) => JSX.Element; export default IconCloud;