23 lines
662 B
TypeScript
23 lines
662 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;
|