import React from 'react'; import type { FeatherIconProps } from './types'; /** * Feather icon * otherProps spread will be removed in version 1. * @param {icon} icon name that matches from feathericons * @returns FeatherIcon react component */ declare const FeatherIcon: ({ icon, size, className, fill, strokeWidth, ...props }: FeatherIconProps) => React.JSX.Element | null; export default FeatherIcon;