@ftdata/icons
Version:
Fulltime Styleguide Icons
9 lines (8 loc) • 389 B
TypeScript
/// <reference types="react" />
import { CommonIconProps } from '..';
export declare type IconsTransportation = 'trs truck-cargo' | 'trs car' | 'trs train' | 'trs boat-ship';
interface TransportationProps extends CommonIconProps {
name: IconsTransportation;
}
export default function Transportation({ color, name, size, weight, ...rest }: TransportationProps): JSX.Element;
export {};