UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.37 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="M9.365 3.108a56 56 0 0 1 6.27 0l.632.036.582.042c.932.08 1.682.219 2.384.597a5.3 5.3 0 0 1 2.035 2.04c.415.774.538 1.593.61 2.639l.053.91a40 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-.843.454-1.754.563-2.966.639l-.632.037A57 57 0 0 1 12.5 20l-1.634.005q-.248 0-.499-.005l-.501-.012-2.241 1.793a1 1 0 0 1-1.617-.654L6 21v-1.666a4 4 0 0 1-.233-.117 5.3 5.3 0 0 1-2.035-2.04c-.414-.774-.538-1.592-.61-2.638l-.036-.595-.017-.316a40 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.772-.417 1.603-.544 2.67-.62l.605-.038zm-.4 3.777c-.977.419-1.813 1.478-1.772 2.58l.009.162.019.195q.005.052.014.108l.038.24c.179.974.726 2.555 2.365 4.193 1.638 1.639 3.22 2.186 4.193 2.365l.24.038.21.025.254.017c1.101.04 2.16-.79 2.579-1.767a.74.74 0 0 0-.095-.742c-.433-.556-.982-.993-1.552-1.4l-.573-.4a.75.75 0 0 0-1.028.166l-.635.967a.24.24 0 0 1-.322.08c-.43-.245-1.056-.663-1.506-1.114-.45-.45-.843-1.048-1.064-1.45a.24.24 0 0 1 .07-.308l.976-.724a.75.75 0 0 0 .128-.993l-.33-.485c-.401-.586-.874-1.22-1.495-1.674a.74.74 0 0 0-.723-.079m4.628 2.002a1 1 0 0 0-.666 1.886c.113.04.208.12.268.224l.037.081a1 1 0 0 0 1.886-.666 2.5 2.5 0 0 0-1.525-1.525m-.276-2.22a1 1 0 0 0 .61 1.276 3.51 3.51 0 0 1 2.134 2.134 1 1 0 1 0 1.886-.666 5.51 5.51 0 0 0-3.354-3.354 1 1 0 0 0-1.276.61"/> </G> </Svg>); }); Icon.displayName = 'ViberMessengerFill'; /** * MingCute Icon: Viber Messenger Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ViberMessengerFill = Icon;