{
  "$schema": "https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json",
  "apiVersion": 2,
  "name": "ainoblocks/profile-image",
  "version": "1.0.0",
  "title": "Profile Image",
  "category": "ainoblocks",
  "parent": [
    "ainoblocks/author"
  ],
  "description": "Show a name, a short description text and avatar profile image.",
  "textdomain": "ainoblocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "keywords": [
    "ainoblocks",
    "author",
    "profile",
    "avatar",
    "image"
  ],
  "attributes": {
    "imgURL": {
      "type": "string",
      "source": "attribute",
      "attribute": "src",
      "selector": "img"
    },
    "imgID": {
      "type": "number"
    },
    "imgAlt": {
      "type": "string",
      "source": "attribute",
      "attribute": "alt",
      "selector": "img"
    },
    "imgSize": {
      "type": "string"
    },
    "imgRadius": {
      "type": "number",
      "default": 0
    },
    "borderWidth": {
      "type": "number",
      "default": 0
    },
    "borderColor": {
      "type": "string"
    }
  },
  "supports": {
    "color": {
      "gradients": true,
      "text": false
    }
  }
}