feat(icons): add VS Code squircle base shape snippet (#3674)

* feat(icons): add VS Code `squircle` base shape snippet

* config: add VS Code snippets schema
This commit is contained in:
Daniel Bayley
2025-10-16 12:48:06 +01:00
committed by GitHub
parent 3c7815c5c0
commit 84c210acf5

View File

@@ -1,4 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/Yash-Singh1/vscode-snippets-json-schema/main/schema.json",
"Lucide SVG": {
"scope": "xml",
"description": "Base SVG with Lucide attributes.",
@@ -51,6 +52,16 @@
],
"body": "<circle cx=\"${2:12}\" cy=\"${3:$2}\" r=\"${1|10,2,.5\" fill=\"currentColor|}\" />"
},
"Squircle": {
"scope": "xml",
"description": "SVG `path` with Lucide defaults.",
"prefix": [
"squircle",
"path",
"<path"
],
"body": "<path d=\"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9\" />"
},
"Ellipse": {
"scope": "xml",
"description": "SVG `ellipse`.",