@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.89 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M12 1a1 1 0 0 1 1 1v1.957q.048.525.109 1.049a1 1 0 0 1 .254 1.926l.063.414c.275 1.762.691 3.87 1.282 5.654H15a1 1 0 0 1 .464 1.886q.268.564.57 1.114H17a1 1 0 0 1 .23 1.974c.77 1.168 1.603 2.31 2.523 3.367A1 1 0 0 1 19 23h-4a1 1 0 0 1-.847-.468l-.061-.113a2.8 2.8 0 0 0-.522-.72C13.204 21.324 12.697 21 12 21s-1.204.324-1.57.699a3 3 0 0 0-.436.561l-.086.159A1 1 0 0 1 9 23H5a1 1 0 0 1-.751-1.66c.919-1.058 1.75-2.197 2.521-3.366A1 1 0 0 1 7 16h.966q.302-.55.57-1.114A1 1 0 0 1 9 13h.292c.525-1.585.913-3.428 1.185-5.055l.16-1.013a1 1 0 0 1 .254-1.926q.061-.525.11-1.05V2a1 1 0 0 1 1-1Zm2.88 17H9.12a36 36 0 0 1-2.04 3h1.35c.14-.207.329-.452.57-.699.61-.625 1.603-1.301 3-1.301s2.39.676 3 1.301c.242.247.43.492.57.699h1.35a36 36 0 0 1-2.04-3m-1.557-3h-2.646l-.222.503-.236.497h3.562l-.236-.497zM12 10.617a35 35 0 0 1-.442 1.795L11.39 13h1.222a33 33 0 0 1-.61-2.383Z"/>
</G>
</Svg>);
});
Icon.displayName = 'EiffelTowerLine';
/**
* MingCute Icon: Eiffel Tower Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const EiffelTowerLine = Icon;