openreplay/frontend/app/components/ui/Icons/fetch_request.tsx
Delirium 203791f0f6
Remove unused code, refactor frontend and revisit libraries (#2458)
* start frontend thinning

* continue thinning

* removing moment and moment-range

* remove highlightjs

* remove semantic-ui

* ghaida commits to openreplay finally

* unused icons

* unused icons

* unused icons

* fix missing icons

---------

Co-authored-by: Ghaida Bouchaala <ghaida.bouchaala@gmail.com>
2024-08-27 16:15:14 +02:00

19 lines
650 B
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Fetch_request(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg fill="none" viewBox="0 0.6 24 24" width={ `${ width }px` } height={ `${ height }px` } ><rect y=".6" width="24" height="24" rx="12" fill="#EBF4F5"/><path d="m16.5 14.6-2 2-2-2M14.5 16.6v-8M7.5 10.6l2-2 2 2M9.5 8.6v8" stroke="#24959A" strokeLinecap="round" strokeLinejoin="round"/></svg>
);
}
export default Fetch_request;