openreplay/frontend/app/components/ui/Icons/sleep.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
2.5 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 Sleep(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 7 7" width={ `${ width }px` } height={ `${ height }px` } ><path d="M.743 5.681A2.815 2.815 0 0 1 .7 5.166c0-.114.006-.221.017-.32.01-.1.026-.2.044-.3l1.544-2.4H.865a2.766 2.766 0 0 1-.027-.205 4.545 4.545 0 0 1 .005-.52c.007-.1.019-.189.033-.266h2.468c.007.066.013.134.017.205.007.07.01.145.01.226 0 .063-.001.135-.005.216-.003.078-.01.181-.022.31L1.8 4.502h1.577c.015.085.024.18.028.283a4.2 4.2 0 0 1 0 .63c-.004.1-.013.188-.028.266H.743ZM3.602 5.681a2.815 2.815 0 0 1-.044-.515c0-.114.005-.221.016-.32.011-.1.026-.2.044-.3l1.544-2.4H3.723a2.765 2.765 0 0 1-.027-.205 4.554 4.554 0 0 1 .005-.52c.008-.1.019-.189.034-.266h2.467c.008.066.013.134.017.205.007.07.011.145.011.226 0 .063-.002.135-.006.216-.003.078-.01.181-.022.31L4.66 4.502h1.577c.014.085.024.18.027.283a4.195 4.195 0 0 1 0 .63c-.003.1-.013.188-.027.266H3.602Z" fill="#D6742D"/><path clipRule="evenodd" d="m.328 6.181-.076-.409a3.314 3.314 0 0 1-.053-.606c0-.13.007-.255.02-.376.012-.111.029-.223.05-.334l.017-.097 1.102-1.714H.446l-.073-.413A3.264 3.264 0 0 1 .34 1.99l-.001-.012v-.012a5.044 5.044 0 0 1 .005-.583 2.86 2.86 0 0 1 .041-.322L.463.655H6.65l.05.445c.007.072.013.146.018.22.008.086.012.175.012.266 0 .073-.002.152-.006.239v.001a9.1 9.1 0 0 1-.023.329l-.011.124-1.113 1.723h1.08l.071.415c.019.108.03.222.035.34a4.712 4.712 0 0 1 0 .686 2.265 2.265 0 0 1-.036.332l-.078.406H.328Zm3.05-.5a4.418 4.418 0 0 0 .028-.896 2.089 2.089 0 0 0-.029-.283H1.8l1.544-2.39.011-.137.001-.017a6.062 6.062 0 0 0 .016-.372 2.25 2.25 0 0 0-.011-.226 3.537 3.537 0 0 0-.017-.205H.876a2.366 2.366 0 0 0-.033.265 3.823 3.823 0 0 0-.005.52c.007.074.016.143.027.205h1.439L.76 4.547c-.018.1-.033.199-.044.298-.011.1-.017.207-.017.321 0 .185.015.356.044.515h2.634Zm.332-4.358a2.35 2.35 0 0 0-.009.097 3.742 3.742 0 0 0-.01.397l.005.124c.007.073.016.141.027.204h1.44L3.617 4.547a4.19 4.19 0 0 0-.035.224v.007a2.79 2.79 0 0 0-.025.388c0 .088.003.173.01.255v.006c.007.088.019.173.034.254h2.634c.014-.078.024-.166.027-.266a4.505 4.505 0 0 0 0-.63 2.09 2.09 0 0 0-.027-.283H4.659l1.543-2.39c.011-.129.019-.232.022-.31a4.81 4.81 0 0 0 .006-.216c0-.08-.004-.156-.011-.226a3.537 3.537 0 0 0-.017-.205H3.735c-.01.051-.018.107-.025.168Zm-.336 2.68.872-1.358h-.651l-.877 1.357h.656Z" fill="#fff"/></svg>
);
}
export default Sleep;