@ftdata/icons
Version:
Fulltime Styleguide Icons
9 lines (8 loc) • 313 B
TypeScript
/// <reference types="react" />
import { CommonIconProps } from '..';
export declare type IconsEnergy = 'eng drop-water-renewable-circle';
interface EnergyProps extends CommonIconProps {
name: IconsEnergy;
}
export default function Energy({ color, name, size, ...rest }: EnergyProps): JSX.Element;
export {};