* 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>
19 lines
934 B
TypeScript
19 lines
934 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 Referrer(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="M10.5 8.1h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1Z" fill="#fff" stroke="#24959A" strokeLinecap="round" strokeLinejoin="round"/><path d="M9.5 12.1v2a1 1 0 0 0 1 1h2" stroke="#24959A" strokeLinecap="round" strokeLinejoin="round"/><path d="M15.5 13.1h-2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1Z" fill="#fff" stroke="#24959A" strokeLinecap="round" strokeLinejoin="round"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Referrer;
|