style: font picker
This commit is contained in:
@ -25,7 +25,12 @@ export function FontPicker({
|
|||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{FONT_OPTIONS.map((font) => (
|
{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}
|
{font.label}
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
))}
|
))}
|
||||||
|
Reference in New Issue
Block a user