generator-nitro
Version:
Yeoman generator for the nitro frontend framework
23 lines (22 loc) • 430 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/atom/cta",
"title": "cta",
"description": "A cta atom",
"type": "object",
"properties": {
"text": {
"description": "Button text",
"type": "string"
},
"href": {
"description": "URL",
"type": "string"
},
"icon": {
"description": "An icon atom",
"enum": ["nitro"]
}
},
"required": ["text", "href", "icon"]
}