@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.66 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.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="M12.052 3.89a1 1 0 0 1-.884 1.104c-3.583.396-6.461 3.63-6.461 7.736a7.27 7.27 0 0 0 12.117 5.42c1.65-1.478 1.973-3.678 1.387-5.582-.395-1.284-1.14-2.27-2.017-2.797v2.73a3.986 3.986 0 0 1-3.987 3.986h-.13a3.857 3.857 0 0 1-3.856-3.857 5.285 5.285 0 0 1 5.285-5.285h.688v-1.55a2.796 2.796 0 0 1 5.121-1.55l.386.579a1 1 0 1 1-1.664 1.11l-.386-.58a.796.796 0 0 0-1.457.442v1.78c1.927.627 3.327 2.448 3.928 4.404.761 2.473.395 5.548-1.964 7.66a9.27 9.27 0 0 1-15.45-6.91c-.001-5.03 3.553-9.206 8.24-9.724a1 1 0 0 1 1.104.884m2.142 5.455h-.688a3.285 3.285 0 0 0-3.286 3.285c0 1.025.832 1.857 1.857 1.857h.13c1.097 0 1.986-.89 1.986-1.987z"/>
</G>
</Svg>);
});
Icon.displayName = 'NeteaseMusicLine';
/**
* MingCute Icon: Netease Music Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const NeteaseMusicLine = Icon;