react-code-dataset
/
wp-calypso
/client
/devdocs
/design
/wordpress-components-gallery
/font-size-picker.tsx
| import { FontSizePicker } from '@wordpress/components'; | |
| import { useState } from 'react'; | |
| const FontSizePickerExample = () => { | |
| const [ fontSize, setFontSize ] = useState< string | number | undefined >( 16 ); | |
| return ( | |
| <FontSizePicker | |
| fontSizes={ [ | |
| { | |
| name: 'Small', | |
| slug: 'small', | |
| size: 12, | |
| }, | |
| { | |
| name: 'Normal', | |
| slug: 'normal', | |
| size: 16, | |
| }, | |
| { | |
| name: 'Big', | |
| slug: 'big', | |
| size: 26, | |
| }, | |
| ] } | |
| value={ fontSize } | |
| onChange={ setFontSize } | |
| /> | |
| ); | |
| }; | |
| export default FontSizePickerExample; | |