mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-23 15:17:41 +08:00
* Fix: Resolve QA comments [APP-1544] * New: Add beta tags [APP-1555] * New: Add the "no results" state [APP-1544]
16 lines
954 B
JavaScript
16 lines
954 B
JavaScript
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const DashboardIcon = ({ size }, props) => {
|
|
return (
|
|
<SvgIcon width="20" height="20" fill="none" fontSize={size} {...props}>
|
|
<path
|
|
fill="#000"
|
|
fillRule="evenodd"
|
|
d="M4.2 2.709a.625.625 0 0 0-.624.625v6.667c0 .345.28.625.625.625h5c.345 0 .625-.28.625-.625V3.334a.625.625 0 0 0-.625-.625h-5Zm.626 6.667V3.959h3.75v5.417h-3.75ZM4.2 12.709a.625.625 0 0 0-.624.625v3.333c0 .345.28.625.625.625h5c.345 0 .625-.28.625-.625v-3.333a.625.625 0 0 0-.625-.625h-5Zm.626 3.333V13.96h3.75v2.083h-3.75ZM11.91 10c0-.345.279-.624.624-.624h5c.345 0 .625.28.625.625v6.666c0 .345-.28.625-.625.625h-5a.625.625 0 0 1-.625-.625v-6.666Zm1.25 6.042h3.75v-5.416h-3.75v5.416ZM12.534 2.709a.625.625 0 0 0-.625.625v3.333c0 .346.28.625.625.625h5c.345 0 .625-.28.625-.625V3.334a.625.625 0 0 0-.625-.625h-5Zm.625 3.333V3.96h3.75v2.083h-3.75Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</SvgIcon>
|
|
);
|
|
};
|
|
|
|
export default DashboardIcon;
|