{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/blockquote",
  "version": "0.0.1",
  "title": "Blockquote",
  "category": "gutenito",
  "icon": "format-quote",
  "description": "A styled blockquote block with quote icon",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "quote": {
      "type": "string",
      "default": "This is a beautiful quote that inspires and motivates."
    },
    "author": {
      "type": "string",
      "default": "John Doe"
    },
    "citation": {
      "type": "string",
      "default": ""
    },
    "quoteColor": {
      "type": "string"
    },
    "authorColor": {
      "type": "string"
    },
    "backgroundColor": {
      "type": "string"
    },
    "borderColor": {
      "type": "string",
      "default": "#3b82f6"
    },
    "iconColor": {
      "type": "string",
      "default": "#3b82f6"
    },
    "quoteFontSize": {
      "type": "string",
      "default": "20px"
    },
    "authorFontSize": {
      "type": "string",
      "default": "16px"
    },
    "borderWidth": {
      "type": "string",
      "default": "4px"
    },
    "borderRadius": {
      "type": "string",
      "default": "8px"
    },
    "showIcon": {
      "type": "boolean",
      "default": true
    },
    "alignmentDesktop": {
      "type": "string",
      "default": "left"
    },
    "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"
}