import { TextControl } from '@wordpress/components'; import Pencil1Icon from 'blockbite-icons/dist/Pencil1'; type TextControlLabelProps = { className?: string; defaultValue: any; children?: React.ReactNode; onChange?: (value: string) => void; onClick?: () => void; }; export const TextControlLabel = ({ onChange, defaultValue, children, }: TextControlLabelProps) => { return (