{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "native/icon",
  "version": "0.1.0",
  "title": "Icon",
  "category": "nb-table",
  "description": "Shows SVG icon from library or custom SVG code.",
  "example": {},
  "supports": {
    "anchor": true,
    "html": false,
    "spacing": {
      "margin": true,
      "padding": true
    }
  },
  "attributes": {
    "blockStyle": {
      "type": "object"
    },
    "iconSource": {
      "type": "string",
      "default": "library"
    },
    "icon": {
      "type": "string",
      "default": "check-circle"
    },
    "svgCode": {
      "type": "string"
    },
    "alignment": {
      "type": "string",
      "default": ""
    },
    "iconColor": {
      "type": "string"
    },
    "iconSize": {
      "type": "number"
    }
  },
  "textdomain": "native-table",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}