{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "title": "Info Box",
  "name": "brandy/info-box",
  "category": "brandy-blocks",
  "description": "Pair an icon with a heading, a line of text and a link — the building block of feature grids and service lists.",
  "keywords": [
    "info",
    "icon box",
    "feature",
    "service",
    "card",
    "callout"
  ],
  "attributes": {
    "layout": {
      "type": "string",
      "enum": [
        "stacked",
        "inline"
      ],
      "default": "stacked"
    },
    "contentAlign": {
      "type": "string",
      "enum": [
        "left",
        "center",
        "right"
      ],
      "default": "center"
    },
    "iconName": {
      "type": "string",
      "default": "rocket-launch"
    },
    "iconType": {
      "type": "string",
      "enum": [
        "regular",
        "fill",
        "duotone"
      ],
      "default": "regular"
    },
    "iconSize": {
      "type": "number",
      "default": 40
    },
    "iconColor": {
      "type": "string",
      "default": ""
    },
    "iconBackgroundColor": {
      "type": "string",
      "default": ""
    },
    "iconShape": {
      "type": "string",
      "enum": [
        "none",
        "circle",
        "square"
      ],
      "default": "circle"
    },
    "hoverEffect": {
      "type": "string",
      "enum": [
        "none",
        "lift"
      ],
      "default": "none"
    }
  },
  "supports": {
    "html": false,
    "anchor": true,
    "align": [
      "wide",
      "full"
    ],
    "color": {
      "text": true,
      "background": true,
      "gradients": true,
      "__experimentalDefaultControls": {
        "background": false,
        "text": false
      }
    },
    "spacing": {
      "margin": true,
      "padding": true,
      "blockGap": true,
      "__experimentalSkipSerialization": [
        "blockGap"
      ],
      "__experimentalDefaultControls": {
        "padding": true
      }
    },
    "typography": {
      "fontSize": true,
      "__experimentalFontFamily": true
    },
    "shadow": true,
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true,
      "__experimentalDefaultControls": {
        "radius": true
      }
    }
  },
  "example": {
    "viewportWidth": 400,
    "innerBlocks": [
      {
        "name": "core/heading",
        "attributes": {
          "level": 3,
          "content": "Ships in two days",
          "className": "brandy-info-box__title"
        }
      },
      {
        "name": "core/paragraph",
        "attributes": {
          "content": "Order before three and it leaves the same afternoon, tracked the whole way.",
          "className": "brandy-info-box__text"
        }
      }
    ]
  },
  "textdomain": "brandy-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}