UNPKG

geostyler

Version:
11 lines (10 loc) 334 B
import { default as React } from 'react'; import { SelectProps } from 'antd'; export interface FontPickerProps extends Omit<SelectProps, 'options' | 'defaultValue'> { fonts?: string[]; defaultValue?: string[]; } /** * FontPicker to select font types / families */ export declare const FontPicker: React.FC<FontPickerProps>;