style: font picker
This commit is contained in:
parent
7ec9167aeb
commit
6c59fed5c0
|
|
@ -25,7 +25,12 @@ export function FontPicker({
|
|||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{FONT_OPTIONS.map((font) => (
|
||||
<SelectItem key={font.value} value={font.value}>
|
||||
<SelectItem
|
||||
key={font.value}
|
||||
value={font.value}
|
||||
className="text-xs"
|
||||
style={{ fontFamily: font.value }}
|
||||
>
|
||||
{font.label}
|
||||
</SelectItem>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Reference in New Issue