import { useState } from 'react'; import { FONTS } from '../../constants/fonts'; export function TextTab({ onAddText }) { const [text, setText] = useState('Your text here'); const [fontFamily, setFontFamily] = useState('Roboto'); const [fontSize, setFontSize] = useState(48); const [fill, setFill] = useState('#0f172a'); const handleAddText = () => { onAddText({ type: 'text', x: 150, y: 150, text, fontFamily, fontSize, fill, rotation: 0, }); }; return (

Add Text

{/* Text input */}