UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.52 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M6.936 3.715C8.326 2.567 10.24 2 12.404 2c1.746 0 3.49.275 5.259.981a1 1 0 0 1 .629.929v3.64c0 1.244-1.286 1.916-2.291 1.5-1.198-.494-2.532-.759-3.597-.759q-.324.002-.512.04-.074.015-.12.03c.089.072.25.17.528.29.309.134.68.263 1.129.416l.061.02c.42.144.892.305 1.367.495.99.396 2.094.954 2.95 1.882.885.957 1.445 2.241 1.45 3.954v.003c0 2.065-.835 3.755-2.305 4.904C15.511 21.454 13.542 22 11.34 22a14.6 14.6 0 0 1-5.777-1.21 1 1 0 0 1-.604-.918V16.18c0-1.241 1.297-1.937 2.322-1.47 1.39.636 2.901 1.038 4.059 1.038.497 0 .761-.073.87-.134l.017-.01a.4.4 0 0 0 .005-.062v-.005a.3.3 0 0 0-.04-.05c-.084-.086-.25-.205-.56-.353a13 13 0 0 0-1.112-.444l-.22-.08c-.373-.135-.782-.283-1.189-.448-.973-.395-2.066-.935-2.916-1.81-.882-.908-1.453-2.127-1.453-3.753 0-2.026.782-3.717 2.194-4.883ZM8.21 5.257c-.918.758-1.467 1.866-1.467 3.34 0 1.104.366 1.824.888 2.361.555.571 1.334.985 2.233 1.349.369.15.736.283 1.107.417l.234.085c.437.16.888.329 1.288.519.713.34 1.74.97 1.74 2.213 0 .375-.083.744-.277 1.077a2 2 0 0 1-.766.74c-.561.314-1.243.39-1.85.39-1.373 0-2.957-.408-4.38-.998v2.447c1.503.562 3.001.803 4.38.803 1.898 0 3.388-.473 4.381-1.249.964-.754 1.537-1.852 1.538-3.327-.005-1.234-.39-2.03-.92-2.602-.556-.603-1.334-1.026-2.223-1.382-.426-.17-.855-.316-1.285-.463l-.047-.017a18 18 0 0 1-1.278-.473c-.387-.168-.809-.387-1.142-.703-.362-.344-.634-.819-.634-1.424 0-.72.328-1.323.936-1.683.52-.308 1.157-.385 1.739-.385 1.203 0 2.597.259 3.888.728V4.608C15.002 4.177 13.717 4 12.404 4c-1.836 0-3.255.481-4.195 1.257Z"/> </G> </Svg>); }); Icon.displayName = 'StripeLine'; /** * MingCute Icon: Stripe Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const StripeLine = Icon;