import { FontSizePicker } from '@wordpress/components'; import { useState } from 'react'; const FontSizePickerExample = () => { const [ fontSize, setFontSize ] = useState< string | number | undefined >( 16 ); return ( ); }; export default FontSizePickerExample;