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
21 lines
469 B
JavaScript
21 lines
469 B
JavaScript
const ChartSkeleton = (props) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 489 194"
|
|
fill="transparent"
|
|
{...props}
|
|
style={{ maxWidth: '100%' }}
|
|
>
|
|
<path d="M24 1V137" stroke="#F3F3F4" />
|
|
<path
|
|
d="M24 122.5L102.029 106.033L190.906 2.5L270.809 92.5L344.46 63.4543L407.885 21.2879L488 53.7291"
|
|
stroke="black"
|
|
strokeOpacity="0.12"
|
|
strokeWidth="2"
|
|
/>
|
|
<path d="M24 137L488 137" stroke="#F3F3F4" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ChartSkeleton;
|