22 lines
719 B
TypeScript
22 lines
719 B
TypeScript
import React from 'react';
|
|
|
|
type Props = React.SVGProps<SVGSVGElement>;
|
|
|
|
const HomeIcon: React.FC<Props> = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width='24'
|
|
height='24'
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<path d="M17.79 22.75H6.21c-2.74 0-4.96-2.23-4.96-4.97v-7.41c0-1.36.84-3.07 1.92-3.91l5.39-4.2C10.18 1 12.77.94 14.45 2.12l6.18 4.33c1.19.83 2.12 2.61 2.12 4.06v7.28c0 2.73-2.22 4.96-4.96 4.96Z" />
|
|
<path d="M12 18.75c-.41 0-.75-.34-.75-.75v-3c0-.41.34-.75.75-.75s.75.34.75.75v3c0 .41-.34.75-.75.75Z"></path>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default HomeIcon;
|