UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.75 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"> <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="M9.365 3.108a56 56 0 0 1 6.27 0l.632.036c1.212.076 2.123.185 2.966.64a5.3 5.3 0 0 1 2.035 2.04c.528.984.583 2.041.663 3.548a40 40 0 0 1 0 4.256l-.053.91c-.072 1.047-.195 1.865-.61 2.639a5.3 5.3 0 0 1-2.035 2.04c-.983.53-2.06.59-3.598.676A57 57 0 0 1 12.5 20l-1.546.005q-.54 0-1.088-.017l-2.241 1.793A1 1 0 0 1 6 21.001v-1.667a4 4 0 0 1-.233-.117 5.3 5.3 0 0 1-2.035-2.04c-.527-.985-.583-2.042-.663-3.549a40 40 0 0 1 0-4.256l.053-.91c.072-1.046.196-1.865.61-2.638a5.3 5.3 0 0 1 2.035-2.04c.983-.53 2.06-.59 3.598-.676m5.964 1.986a50 50 0 0 0-5.658 0l-.95.057c-1.098.076-1.57.158-2.005.393a3.3 3.3 0 0 0-1.22 1.224c-.293.546-.345 1.13-.44 2.897a34 34 0 0 0 0 3.67l.043.753c.074 1.198.15 1.684.396 2.144.25.467.755.973 1.22 1.224.557.3 1.285.353 1.285 1.174v.29l.908-.727a1 1 0 0 1 .672-.218c.486.024.97.03 1.457.03L12.5 18c.848 0 1.837-.038 2.83-.093l.736-.044c1.252-.08 1.755-.157 2.218-.407a3.3 3.3 0 0 0 1.221-1.224c.293-.546.345-1.13.439-2.897a34 34 0 0 0 0-3.67l-.043-.753c-.074-1.197-.15-1.684-.396-2.144a3.3 3.3 0 0 0-1.22-1.224c-.545-.294-1.146-.349-2.956-.45m-6.364 1.79a.74.74 0 0 1 .722.08c.8.583 1.352 1.465 1.826 2.159a.75.75 0 0 1-.128.993l-.975.724a.24.24 0 0 0-.071.308c.22.402.614 1 1.064 1.45s1.076.869 1.506 1.114a.24.24 0 0 0 .322-.08l.634-.967a.75.75 0 0 1 1.029-.166c.764.528 1.547 1.059 2.125 1.8a.73.73 0 0 1 .095.742c-.416.97-1.483 1.807-2.579 1.767l-.161-.01c-.832-.062-2.742-.44-4.737-2.435-2.136-2.137-2.418-4.177-2.444-4.897-.041-1.103.795-2.162 1.772-2.581Zm4.628 2.003a2.5 2.5 0 0 1 1.525 1.525 1 1 0 0 1-1.84.774l-.046-.108a.5.5 0 0 0-.224-.268l-.081-.037a1 1 0 0 1 .666-1.886m-.276-2.22a1 1 0 0 1 1.276-.61 5.51 5.51 0 0 1 3.354 3.354 1 1 0 0 1-1.886.666 3.51 3.51 0 0 0-2.134-2.134 1 1 0 0 1-.61-1.276"/> </G> </Svg>); }); Icon.displayName = 'ViberMessengerLine'; /** * MingCute Icon: Viber Messenger Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ViberMessengerLine = Icon;