Sample Data
This table shows how design elements from Figma components translate into code snippets in a design-to-code workflow.
| Cell | Value |
|---|---|
| A1 | Component |
| B1 | Design Element |
| C1 | Code Output |
| A2 | Button |
| B2 | Rectangle with Text |
| C2 | <button>Click me</button> |
| A3 | Input Field |
| B3 | Text box with placeholder |
| C3 | <input placeholder='Enter text'/> |
| A4 | Header |
| B4 | Text with font size 24px |
| C4 | <h1 style='font-size:24px'>Title</h1> |