get_component
Generate a JSX snippet with import and element for any Design System component using props and children, while rejecting unsafe values to ensure valid code.
Instructions
Generate a JSX snippet (import + element) for a DS component with the given props/children. Rejects JSX-unsafe prop values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| props | No | Component props (string|number|boolean primitives; nested objects/arrays allowed). | |
| children | No | Children content for the component (JSX or text). | |
| componentName | Yes | PascalCase component name (e.g. "Button", "DatePicker"). |