get_icons_by_desc_and_prefix
Retrieve SVG icons using descriptions and prefixes from the Iconify API. Designed for FE/UI designers to simplify icon searches without manual website browsing.
Instructions
get icons by desc and prefix (LIKE AS ant-design)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
desc | Yes | desc of icon, only English | |
prefix | No | icon prefix, default env.PREFIX |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"desc": {
"description": "desc of icon, only English",
"type": "string"
},
"prefix": {
"description": "icon prefix, default env.PREFIX",
"type": "string"
}
},
"required": [
"desc"
],
"type": "object"
}