openreplay/frontend/app/components/ui/Icons/redux.tsx
Delirium 6c058b36d2
fix(ui): split icons from SVG.tsx components (#1787)
* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components
2023-12-19 17:35:47 +01:00

19 lines
1.6 KiB
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Redux(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path clipRule="evenodd" d="M5.912 11.901a.974.974 0 0 1-.97-.936.779.779 0 0 1 .12-.503c-.97-1.682-1.49-3.814-.693-6.034.572-1.664 2.011-2.791 3.572-2.791 1.664 0 3.398 1.456 3.606 4.265a11.74 11.74 0 0 0-.867-.26c-.052-.92-.832-3.208-2.67-3.173-.659.017-1.63.33-2.132.97-.607.746-.954 1.648-1.023 2.688-.104 1.387.19 2.67.901 3.85.035-.018.087-.018.122-.018h.034c.52 0 .954.416.971.937a.97.97 0 0 1-.936 1.005h-.035Zm7.844-3.38c-1.318-1.544-3.26-2.394-5.479-2.394H8a.953.953 0 0 0-.85-.52h-.034A.97.97 0 0 0 7.15 7.55h.035a.977.977 0 0 0 .85-.59h.312c1.317 0 2.566.382 3.693 1.128.867.572 1.49 1.317 1.838 2.22.294.727.277 1.438-.035 2.045-.486.919-1.3 1.422-2.376 1.422a4.436 4.436 0 0 1-1.699-.364c-.19.173-.537.45-.78.624.746.347 1.509.537 2.237.537 1.664 0 2.895-.919 3.364-1.838.502-1.005.468-2.739-.833-4.213Zm-3.052 2.15a.974.974 0 0 0-.104-1.942h-.034a.97.97 0 0 0-.937 1.005c.018.26.122.485.278.641-.59 1.162-1.491 2.012-2.844 2.723-.919.485-1.872.659-2.826.537-.78-.104-1.387-.45-1.768-1.023-.555-.85-.607-1.768-.14-2.687.33-.66.85-1.145 1.18-1.387a9.35 9.35 0 0 1-.225-.885c-2.515 1.82-2.254 4.283-1.492 5.445.573.866 1.734 1.404 3.017 1.404.347 0 .694-.035 1.04-.121 2.22-.434 3.902-1.752 4.855-3.71Z"/></svg>
);
}
export default Redux;