mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-21 07:09:20 +08:00
* [APP-1108][APP-1109][APP-1110] Add analytics backend logic * [APP-1108][APP-1109][APP-1110] Add analytics backend logic * Add nonce to the widget settings * Update routes and DB table * Fix comments * Fix comments * Fix comments * Fix comments * Fix comments * Fix comments * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1107] Add dashboard for analytics * [APP-1201] add accessibility rules * [APP-1107] fixed API endpoint * [APP-1107] fixed API endpoint * [APP-1107] fixed API endpoint * [APP-1107] add check for is_active * update to the latest * update to the latest * update to the latest * fix bugs, add changes * fix bugs, add changes * fix bugs, add changes * fix bugs, add changes
13 lines
747 B
JavaScript
13 lines
747 B
JavaScript
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const CrownFilled = (props) => (
|
|
<SvgIcon viewBox="0 0 21 15" fontSize={props.size} {...props}>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M10.5 0.785156C10.7508 0.785156 10.985 0.910482 11.1241 1.11913L14.6703 6.43847L19.0315 2.9495C19.2777 2.75258 19.6207 2.7306 19.89 2.89448C20.1592 3.05837 20.2973 3.37314 20.2355 3.68224L18.2355 13.6822C18.1654 14.0328 17.8576 14.2852 17.5 14.2852H3.50004C3.14253 14.2852 2.83472 14.0328 2.76461 13.6822L0.764605 3.68224C0.702784 3.37314 0.840845 3.05837 1.11012 2.89448C1.3794 2.7306 1.72241 2.75258 1.96856 2.9495L6.32977 6.43847L9.876 1.11913C10.0151 0.910482 10.2493 0.785156 10.5 0.785156Z"
|
|
/>
|
|
</SvgIcon>
|
|
);
|
|
|
|
export default CrownFilled;
|