UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.57 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="M19.09 4.668c.822.747 1.692 1.993 2.24 4.038s.418 3.558.079 4.617c-.518 1.617-2.209 1.902-3.353 1.668l-2.043-.418c.304.672.394 1.416.42 2.004.01.207.012.418.008.623l-.013.401-.022.375-.073.901a1 1 0 0 1-.475.797l-2.694 1.656c-.713.438-1.643-.183-1.511-1.01.108-.677.216-1.355.263-2.04-.552.631-1.206 1.143-1.827 1.7a1 1 0 0 1-.9.228l-3.076-.735c-.814-.194-1.032-1.29-.355-1.782l.595-.43c.696-.508 1.385-1.05 1.917-1.721.16-.203.25-.406.326-.62l.166-.506-2.818.577c-1.144.234-2.835-.05-3.353-1.668-.339-1.059-.469-2.572.079-4.617s1.418-3.29 2.24-4.038c1.258-1.142 2.864-.543 3.738.232l2.505 2.221a3 3 0 0 1 1.694 0L15.352 4.9c.874-.775 2.48-1.374 3.737-.232ZM13 14.253c.033.378.248.774.443 1.092.275.448.395.976.45 1.447.053.458.054.935.03 1.395l-.021.341.475-.291c.04-.449.084-.982.058-1.57-.036-.802-.204-1.316-.433-1.565l-.064-.061zm-2.038.135c-.182.32-.329.671-.42 1.051-.121.511-.41.97-.705 1.342a8.5 8.5 0 0 1-.964 1.008l-.257.226.542.13c.345-.29.754-.635 1.151-1.07.591-.646.829-1.16.799-1.501-.035-.4-.067-.792-.146-1.186m5.716-7.992-2.184 1.937c.233.348.395.748.465 1.178l.815-.218a1 1 0 0 1 .518 1.932l-1.35.362a3 3 0 0 1-.223.68l3.737.765c.328.067.918.084 1.047-.319.209-.653.354-1.773-.106-3.49-.46-1.716-1.145-2.613-1.653-3.075-.314-.284-.815.026-1.066.248M6.255 6.15c-.508.46-1.193 1.358-1.653 3.075-.46 1.716-.315 2.836-.106 3.49.13.402.719.385 1.047.318l3.737-.765a3 3 0 0 1-.223-.68l-1.35-.362a1 1 0 0 1 .518-1.932l.815.218c.07-.43.232-.83.465-1.178L7.321 6.396c-.25-.222-.752-.532-1.066-.247ZM12 9a1 1 0 0 0-1 1v1a1 1 0 0 0 2 0v-1a1 1 0 0 0-1-1"/> </G> </Svg>); }); Icon.displayName = 'BowknotLine'; /** * MingCute Icon: Bowknot Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const BowknotLine = Icon;