import { registerBlockType } from '@wordpress/blocks'; import { __ } from '@wordpress/i18n'; import React from 'react'; import { Icon } from '../../../../../../assets/js/blocks/components'; import Edit from './Edit'; import Save from './Save'; import attributes from './attributes'; export function registerCourseDurationBlock() { registerBlockType('masteriyo/course-duration', { title: __('Course Duration', 'learning-management-system'), description: __( 'Displays the total duration of the course on the certificate.', 'learning-management-system', ), icon: , category: 'masteriyo', keywords: ['course', 'duration', 'time'], attributes, supports: { align: false, html: false, color: { background: false, gradient: false, text: false, }, customClassName: false, }, edit: Edit, save: Save, }); }