import { memo } from "@wordpress/element"; import Responsive from "../responsive/responsive"; import { ResetButton, Units } from "../utility"; const ComponentsTopSection = ({ label, units = false, attributes, setAttributes, attributesKey = "", onReset = false, onUnitChange, }) => { return (
{label} {attributes?.device && }
{units && (
{onReset && onReset()} />}
)}
); }; export default memo(ComponentsTopSection);