import { __ } from "@wordpress/i18n"; import { InputControl, Toggle } from "../../components"; export const VisibilityTab = ({ attributes, setAttributes }) => { const { hideOnDesktop, hideOnTablet, hideOnMobile } = attributes; return (
); }; export const AdvancedTab = ({ attributes, setAttributes }) => { const { additionalCssClass } = attributes; return (
); };