* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
45 lines
1.1 KiB
TypeScript
45 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 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;
|