mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* add: volume and solid crown icon * add: volume and crown icons to export * update: refactor menu item to a new component * add: screen reader to the menu items and reorganize them * add: pro item infotip content * add: capabilities item and pro info tip to exports * update: import ProInfoTip component and change disabled logic * update: imports * update: refactor pro item infotip into the separate component * update: refactor infotip and add comments * add: custom switch component * add: logo settings layout * update: switch component * add: useToggleSetting hook to manage widget settings. * update: move pro feature key to a separate constant * fix: pro icon style * update: remove branding key * update: pro enable check structure * update: pro enabled check structure * update: key name * update: update key before checking for it * fix: null error * add: update logic to get the tools settings based on plan * update: exclude remove-elementor-label from the minimum option rule * update: add formlabel and eventnames * add: logic to deactivate the features which are disabled for the plan * fix: PHP warning * fix: keyword name * add: GOLINKS * add: open link function * fix: PHP warning undefined key * update: logic to show the icon and added golinks
16 lines
791 B
JavaScript
16 lines
791 B
JavaScript
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const ProCrownIcon = (props, { size }) => {
|
|
return (
|
|
<SvgIcon viewBox="0 0 18 18" fontSize={size} {...props}>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M9.00003 3.9375C9.1881 3.9375 9.36373 4.03149 9.46806 4.18798L12.1277 8.17749L15.3986 5.56076C15.5833 5.41307 15.8405 5.39658 16.0425 5.51949C16.2444 5.64241 16.348 5.87849 16.3016 6.11032L14.8016 13.6103C14.749 13.8732 14.5182 14.0625 14.25 14.0625H3.75003C3.4819 14.0625 3.25104 13.8732 3.19845 13.6103L1.69845 6.11032C1.65209 5.87849 1.75563 5.64241 1.95759 5.51949C2.15955 5.39658 2.41681 5.41307 2.60142 5.56076L5.87233 8.17749L8.532 4.18798C8.63633 4.03149 8.81196 3.9375 9.00003 3.9375Z"
|
|
fill="#66002C"
|
|
/>
|
|
</SvgIcon>
|
|
);
|
|
};
|
|
|
|
export default ProCrownIcon;
|