UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

17 lines (16 loc) 598 B
import React, { FunctionComponent, AriaRole, Ref } from "react"; import VibeComponentProps from "../../../types/VibeComponentProps"; export interface CustomSvgIconProps extends VibeComponentProps { onClick?: (event: React.MouseEvent) => void; src: string | object; ariaLabel?: string; tabIndex?: number; role?: AriaRole; ariaHidden?: boolean; clickable?: boolean; replaceToCurrentColor?: boolean; customColor?: string; ref?: Ref<SVGElement>; } declare const CustomSvgIcon: FunctionComponent<CustomSvgIconProps>; export default CustomSvgIcon;