automotive-icons
Version:
Icon fonts for an automotive app
102 lines (98 loc) • 2.03 kB
text/typescript
export type AutomotiveId =
| "automatic"
| "bike"
| "calendar"
| "car"
| "clock"
| "donutchart"
| "door"
| "electric"
| "grid"
| "home"
| "linechart"
| "list-alternative"
| "list"
| "manual"
| "nozzle"
| "odometer"
| "people"
| "person"
| "piechart"
| "plug"
| "search"
| "setting"
| "van";
export type AutomotiveKey =
| "Automatic"
| "Bike"
| "Calendar"
| "Car"
| "Clock"
| "Donutchart"
| "Door"
| "Electric"
| "Grid"
| "Home"
| "Linechart"
| "ListAlternative"
| "List"
| "Manual"
| "Nozzle"
| "Odometer"
| "People"
| "Person"
| "Piechart"
| "Plug"
| "Search"
| "Setting"
| "Van";
export enum Automotive {
Automatic = "automatic",
Bike = "bike",
Calendar = "calendar",
Car = "car",
Clock = "clock",
Donutchart = "donutchart",
Door = "door",
Electric = "electric",
Grid = "grid",
Home = "home",
Linechart = "linechart",
ListAlternative = "list-alternative",
List = "list",
Manual = "manual",
Nozzle = "nozzle",
Odometer = "odometer",
People = "people",
Person = "person",
Piechart = "piechart",
Plug = "plug",
Search = "search",
Setting = "setting",
Van = "van",
}
export const AUTOMOTIVE_CODEPOINTS: { [key in Automotive]: string } = {
[]: "61697",
[]: "61698",
[]: "61699",
[]: "61700",
[]: "61701",
[]: "61702",
[]: "61703",
[]: "61704",
[]: "61705",
[]: "61706",
[]: "61707",
[]: "61708",
[]: "61709",
[]: "61710",
[]: "61711",
[]: "61712",
[]: "61713",
[]: "61714",
[]: "61715",
[]: "61716",
[]: "61717",
[]: "61718",
[]: "61719",
};