geostyler
Version:
Framework for styling geodata
11 lines (10 loc) • 334 B
TypeScript
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>;