@ftdata/icons
Version:
Fulltime Styleguide Icons
9 lines (8 loc) • 442 B
TypeScript
/// <reference types="react" />
import { CommonIconProps } from '..';
export declare type IconsBusinessAndProducts = 'bp chart-19' | 'bp suitcase-portfolio' | 'bp business-chart-metrics' | 'bp arrow-growth';
interface BusinessAndProductsProps extends CommonIconProps {
name: IconsBusinessAndProducts;
}
export default function BusinessAndProducts({ color, name, size, weight, ...rest }: BusinessAndProductsProps): JSX.Element;
export {};