discotools / components /font-weight /font-weight.constants.ts
enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
raw
history blame contribute delete
471 Bytes
export const FONT_WEIGHT = [
{
label: "Thin",
value: "100",
},
{
label: "Extra Light",
value: "200",
},
{
label: "Light",
value: "300",
},
{
label: "Regular",
value: "400",
},
{
label: "Medium",
value: "500",
},
{
label: "Semi Bold",
value: "600",
},
{
label: "Bold",
value: "700",
},
{
label: "Extra Bold",
value: "800",
},
{
label: "Black",
value: "900",
},
];