create_component
Generate a modern UI component adhering to best practices and accessibility standards. Specify component type, framework (React, Vue, Angular), variant, responsiveness, and props for tailored development.
Instructions
Create a new UI component with modern best practices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentType | Yes | Type of component | |
framework | Yes | Frontend framework | |
props | No | Component props | |
responsive | No | Make responsive | |
variant | No | Component variant |
Input Schema (JSON Schema)
{
"properties": {
"componentType": {
"description": "Type of component",
"type": "string"
},
"framework": {
"description": "Frontend framework",
"type": "string"
},
"props": {
"description": "Component props",
"type": "object"
},
"responsive": {
"description": "Make responsive",
"type": "boolean"
},
"variant": {
"description": "Component variant",
"type": "string"
}
},
"required": [
"componentType",
"framework"
],
"type": "object"
}