import { InputNumber, Space, Slider } from 'antd'; import React from 'react'; export interface RadiusPickerProps { value?: number; onChange?: (value: number | null) => void; } export default function RadiusPicker({ value, onChange }: RadiusPickerProps) { return ( `${val}px`} parser={(str) => (str ? parseFloat(str) : (str as any))} /> ); }