get_component
Retrieve the source code of a specific ReactBits component by name. Specify the preferred styling method (CSS, Tailwind, or default) to get custom or default implementation tailored to your React project.
Instructions
Get the source code for a specific ReactBits component
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the component (e.g., "splash-cursor", "pixel-card") | |
| style | No | Preferred styling method (defaults to available) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the component (e.g., \"splash-cursor\", \"pixel-card\")",
"type": "string"
},
"style": {
"description": "Preferred styling method (defaults to available)",
"enum": [
"css",
"tailwind",
"default"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}