generate_component
Create its-just-ui React components with custom props, children content, and Tailwind CSS classes for streamlined UI development.
Instructions
Generate an its-just-ui component with specified props and styling
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| children | No | Children content for the component | |
| className | No | Additional Tailwind CSS classes | |
| component | Yes | Name of the its-just-ui component | |
| props | No | Props to pass to the component | 
Input Schema (JSON Schema)
{
  "properties": {
    "children": {
      "description": "Children content for the component",
      "type": "string"
    },
    "className": {
      "description": "Additional Tailwind CSS classes",
      "type": "string"
    },
    "component": {
      "description": "Name of the its-just-ui component",
      "type": "string"
    },
    "props": {
      "description": "Props to pass to the component",
      "type": "object"
    }
  },
  "required": [
    "component"
  ],
  "type": "object"
}