{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/icon-list",
  "version": "0.0.1",
  "title": "Icon List",
  "category": "gutenito",
  "icon": "list-view",
  "description": "List with custom icons",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "items": {
      "type": "array",
      "default": [
        {
          "text": "List item 1",
          "icon": "✓"
        },
        {
          "text": "List item 2",
          "icon": "✓"
        },
        {
          "text": "List item 3",
          "icon": "✓"
        }
      ]
    },
    "iconPosition": {
      "type": "string",
      "default": "left"
    },
    "iconColor": {
      "type": "string"
    },
    "iconSize": {
      "type": "string",
      "default": "20px"
    },
    "textColor": {
      "type": "string"
    },
    "fontSize": {
      "type": "string",
      "default": "16px"
    },
    "spacing": {
      "type": "string",
      "default": "8px"
    },
    "gap": {
      "type": "string",
      "default": "12px"
    },
    "alignmentDesktop": {
      "type": "string"
    },
    "alignmentTablet": {
      "type": "string"
    },
    "alignmentMobile": {
      "type": "string"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}