onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 772 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const Villa = ({ size = 'md', color = 'currentColor', style, }) => {
const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 };
const iconSize = typeof size === 'number' ? size : sizeMap[size];
return (React.createElement(Svg, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", style: style },
React.createElement(Path, { d: "M19.778 9.778C18.556 9.778 17.556 10.778 17.556 12.000H16.444V2.000L2.000 7.556V22.000H22.000V12.000C22.000 10.778 21.000 9.778 19.778 9.778ZM4.222 9.078L14.222 5.233V12.000H8.667V19.778H4.222V9.078ZM19.778 19.778H16.444V16.444H14.222V19.778H10.889V14.222H19.778V19.778Z", fill: color })));
};
Villa.displayName = 'Villa';