UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.71 kB
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="M21 20a1 1 0 0 1 .117 1.993L21 22H3a1 1 0 0 1-.117-1.993L3 20zM8.103 3.205a1.01 1.01 0 0 1 1.151-1.143l.11.024 2.76.739c.346.093.634.33.793.646l.053.123 2.81 7.501 3.665 1.317a3.96 3.96 0 0 1 2.541 2.933c.138.674-.034 1.363-.564 1.828a3.47 3.47 0 0 1-2.982.796l-.21-.05-15.077-4.04a1.1 1.1 0 0 1-.787-.812l-.02-.12-.629-5.265a1.01 1.01 0 0 1 1.15-1.119l.115.024 2.27.609c.36.096.655.346.81.678l.051.129.34 1.004 2.542.387zm2.194 1.201.868 6.024a1.01 1.01 0 0 1-1.035 1.153l-.117-.01-4.456-.68a1.01 1.01 0 0 1-.758-.559l-.047-.115-.404-1.195-.472-.127.383 3.209 14.488 3.882c.444.119.916.024 1.277-.253a1.96 1.96 0 0 0-1.11-1.382l-.145-.059-4.096-1.472a1 1 0 0 1-.553-.48l-.051-.116-2.836-7.57z"/> </G> </Svg>); }); Icon.displayName = 'FlightLandLine'; /** * MingCute Icon: Flight Land Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const FlightLandLine = Icon;