* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
20 lines
508 B
TypeScript
20 lines
508 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 Geo_alt_fill_custom(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 12 16" width={`${width}px`} height={`${height}px`}>
|
|
<path d="M6 16s6-5.686 6-10A6 6 0 1 0 0 6c0 4.314 6 10 6 10Z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Geo_alt_fill_custom;
|