@ftdata/icons
Version:
Fulltime Styleguide Icons
9 lines (8 loc) • 643 B
TypeScript
/// <reference types="react" />
import { CommonIconProps } from '..';
export declare type IconsNeoMarkers = 'nmk bicycle' | 'nmk box' | 'nmk bus' | 'nmk car-side' | 'nmk crane' | 'nmk forklift' | 'nmk generic' | 'nmk motorcycle' | 'nmk paw' | 'nmk plane' | 'nmk pulverizer' | 'nmk satelite' | 'nmk ship' | 'nmk shoe-prints' | 'nmk shuttle-van' | 'nmk tag' | 'nmk tractor' | 'nmk truck' | 'nmk truck-container' | 'nmk truck-pickup' | 'nmk user';
interface NeoMarkersProps extends CommonIconProps {
name: IconsNeoMarkers;
}
export default function NeoMarkers({ color, name, size, weight, ...rest }: NeoMarkersProps): JSX.Element;
export {};