Skip to content

Instantly share code, notes, and snippets.

@shalinjames
Last active August 11, 2018 17:10
Show Gist options
  • Save shalinjames/4fc6ce0985739790d7fa45c49b0d33cd to your computer and use it in GitHub Desktop.
Save shalinjames/4fc6ce0985739790d7fa45c49b0d33cd to your computer and use it in GitHub Desktop.
vscode html snippet
{
"Nebular Button": {
"prefix": "nb-button",
"body": ["<button nbButton></button>"]
},
"Nebular Checkbox Without Status": {
"prefix": "nb-checkbox",
"body": ["<nb-checkbox>${1:text}</nb-checkbox>"]
},
"Nebular Checkbox With Status": {
"prefix": "nb-checkbox-status",
"body": ["<nb-checkbox status=\"${2:success}\">${1:Success}</nb-checkbox>"]
},
"Nebular Checkbox with two field": {
"prefix": "nb-checkbox-2",
"body": [
"<nb-checkbox status=\"${2:success}\">${1:Success}</nb-checkbox>",
"<nb-checkbox status=\"${4:danger}\">${3:Danger}</nb-checkbox>"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment