@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
7 lines (6 loc) • 508 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import Svg, { Path } from 'react-native-svg';
const IconHome = ({ size, color, strokeWidth, style }) => {
return (_jsx(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", style: style, children: _jsx(Path, { d: "M3 10.5L12 3L21 10.5V20C21 20.5523 20.5523 21 20 21H14V15H10V21H4C3.44772 21 3 20.5523 3 20V10.5Z", stroke: color, strokeWidth: strokeWidth, strokeLinejoin: "round", strokeLinecap: "round" }) }));
};
export default IconHome;