????

Your IP : 3.21.43.104


Current Path : /proc/self/cwd/wp-content/plugins/presto-player/src/admin/blocks/blocks/media-hub/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/presto-player/src/admin/blocks/blocks/media-hub/index.js

/**
 * WordPress dependencies
 */
import { __ } from "@wordpress/i18n";

/**
 * Internal dependencies
 */
import edit from "./edit";
import save from "./save";
import metadata from "./block.json";
const { name } = metadata;

export { metadata, name };

export const options = {
  usesContext: ["presto-player/playlist-media-id"],
  providesContext: {
    "presto-player/playlist-media-id": "id",
  },
  attributes: {
    id: {
      type: "number",
    },
  },
  icon: (
    <svg
      width="24"
      height="24"
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className="presto-block-icon"
    >
      <path
        d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
        strokeWidth="2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
      <path
        d="M10 8L16 12L10 16V8Z"
        strokeWidth="2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  ),
  edit,
  save,
};