openreplay/frontend/app/components/ui/Icons/browser_safari.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.1 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 Browser_safari(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 497 497" width={ `${ width }px` } height={ `${ height }px` } ><path d="M248.5 0C111.257 0 0 111.257 0 248.5S111.257 497 248.5 497 497 385.743 497 248.5 385.743 0 248.5 0Zm0 461.5c-117.646 0-213-95.352-213-213s95.354-213 213-213 213 95.352 213 213-95.354 213-213 213Zm-47.18-245.483c-1.136 1.563-2.377 2.983-3.371 4.686-7.064 12.212-8.59 26.058-5.574 38.802l-37.062 141.502 95.886-101.174c15.762-2.166 30.388-11.111 38.979-25.916 2.058-3.585 3.55-7.313 4.721-11.11l6.851 3.444L341.69 78.208 195.25 213.002l6.07 3.015Zm27.37 22.4c1.457-2.52 3.515-4.366 5.787-5.822l26.98 13.49c.249 3.444-.177 6.924-2.023 10.118-4.899 8.484-15.762 11.396-24.246 6.497-8.486-4.935-11.396-15.762-6.497-24.282Z"/></svg>
);
}
export default Browser_safari;