UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.72 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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="m20.255 5.52.087.298.089.338.044.185.089.4.085.443.081.485q.038.253.074.528l.065.572c.08.791.131 1.7.131 2.731s-.05 1.94-.13 2.731l-.066.572q-.035.275-.074.528l-.08.485-.086.443-.089.4-.089.36-.088.317-.043.144c-.331 1.087-1.464 1.505-2.394 1.195l-1.18-.393-.4.933a2 2 0 0 1-2.47 1.11l-5.096-1.7a2 2 0 0 1-1.206-2.684l.269-.628L7 15.055l-1.368.456A2 2 0 0 1 3 13.613V9.388A2 2 0 0 1 5.632 7.49L7 7.946l10.861-3.62c.93-.31 2.063.107 2.394 1.194M9.682 15.948l-.335.78 5.096 1.7.335-.781zm8.706-9.69L8 9.721v3.558l10.388 3.463.077-.283.08-.327.04-.18.078-.394a18 18 0 0 0 .076-.439l.07-.485c.112-.847.191-1.887.191-3.134s-.08-2.287-.19-3.134l-.071-.485q-.037-.23-.076-.44l-.079-.393-.08-.349zM5 9.388v4.225l1-.334V9.721z"/> </G> </Svg>); }); Icon.displayName = 'Horn2Line'; /** * MingCute Icon: Horn 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Horn2Line = Icon;