mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* add: icons for menu settings * add: placeholder layout for widget preview in menu settings * update: load saved settings and updated imports * add: logics for handling and saving menu settings * add: useSavedSettings hook * update: set export as default for Sidebar layout * add: widget menu settings layout and settings * update: add widget menu settings and widget preview layouts * add: hide/show minimum option alert notification * update: styling of the save button * update: save settings logic to use async/await * fix: accessibility text icon
30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const PageStructureIcon = (props, { size }) => {
|
|
return (
|
|
<SvgIcon viewBox="0 0 24 24" fontSize={size} {...props}>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M4 3.25C3.58579 3.25 3.25 3.58579 3.25 4V12C3.25 12.4142 3.58579 12.75 4 12.75H10C10.4142 12.75 10.75 12.4142 10.75 12V4C10.75 3.58579 10.4142 3.25 10 3.25H4ZM4.75 11.25V4.75H9.25V11.25H4.75Z"
|
|
/>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M4 15.25C3.58579 15.25 3.25 15.5858 3.25 16V20C3.25 20.4142 3.58579 20.75 4 20.75H10C10.4142 20.75 10.75 20.4142 10.75 20V16C10.75 15.5858 10.4142 15.25 10 15.25H4ZM4.75 19.25V16.75H9.25V19.25H4.75Z"
|
|
/>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M13.25 12C13.25 11.5858 13.5858 11.25 14 11.25H20C20.4142 11.25 20.75 11.5858 20.75 12V20C20.75 20.4142 20.4142 20.75 20 20.75H14C13.5858 20.75 13.25 20.4142 13.25 20V12ZM14.75 19.25H19.25V12.75H14.75V19.25Z"
|
|
/>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M14 3.25C13.5858 3.25 13.25 3.58579 13.25 4V8C13.25 8.41421 13.5858 8.75 14 8.75H20C20.4142 8.75 20.75 8.41421 20.75 8V4C20.75 3.58579 20.4142 3.25 20 3.25H14ZM14.75 7.25V4.75H19.25V7.25H14.75Z"
|
|
/>
|
|
</SvgIcon>
|
|
);
|
|
};
|
|
|
|
export default PageStructureIcon;
|