UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

19 lines (18 loc) 2.59 kB
import { memo } from 'react'; import Svg, { Path, G, Defs } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill="none" viewBox="0 0 32 24" width={size} height={size} {...props}> <Path fill="#fff" d="M9.746 11.669c0 1.481 1.163 2.63 2.66 2.63.423 0 .784-.084 1.231-.294v-1.157c-.392.393-.74.552-1.186.552-.99 0-1.693-.718-1.693-1.739 0-.967.726-1.73 1.647-1.73.47 0 .824.167 1.233.567V9.34c-.432-.218-.787-.309-1.21-.309-1.489 0-2.682 1.172-2.682 2.637M7.223 10.445c0 .272.174.416.763.634 1.119.41 1.45.772 1.45 1.572 0 .976-.717 1.655-1.738 1.655-.748 0-1.292-.295-1.745-.96l.635-.61c.226.437.604.671 1.073.671.439 0 .763-.302.763-.71a.6.6 0 0 0-.295-.522c-.099-.06-.294-.151-.68-.287-.922-.332-1.239-.687-1.239-1.382 0-.824.68-1.443 1.572-1.443.552 0 1.058.188 1.48.558l-.514.674c-.256-.287-.498-.409-.793-.409-.423 0-.732.242-.732.56"/> <Path fill="#fff" fillRule="evenodd" d="M1.443 9.146H0v5.039h1.435c.763 0 1.315-.18 1.798-.582a2.53 2.53 0 0 0 .915-1.934c0-1.487-1.111-2.523-2.705-2.523m1.148 3.785c-.31.279-.71.4-1.345.4H.982V10h.264c.635 0 1.02.113 1.345.407.34.303.544.772.544 1.255s-.204.967-.544 1.27" clipRule="evenodd"/> <Path fill="#fff" d="M5.583 9.146H4.6v5.039h.983zM20.087 9.146l1.344 3.384 1.361-3.384h1.065l-2.177 5.168h-.528l-2.139-5.168zM24.302 14.185h2.787v-.853h-1.805v-1.36h1.739v-.854h-1.739V10h1.805v-.854h-2.787z"/> <Path fill="#fff" fillRule="evenodd" d="M29.197 9.146c1.134 0 1.785.544 1.785 1.487 0 .772-.409 1.279-1.15 1.43l1.587 2.122h-1.208l-1.36-2.024h-.13v2.024h-.98V9.146zm-.475 2.32h.287c.628 0 .96-.273.96-.78 0-.49-.332-.747-.945-.747h-.302zM31.765 9.41c0-.089-.062-.137-.169-.137h-.142v.444h.106v-.172l.124.172h.13l-.147-.183c.063-.017.098-.062.098-.124m-.187.06h-.018v-.116h.019q.079 0 .08.058 0 .059-.081.059" clipRule="evenodd"/> <Path fill="#fff" fillRule="evenodd" d="M31.23 9.494a.385.385 0 1 1 .77 0 .386.386 0 0 1-.383.388.387.387 0 0 1-.387-.388m.077 0c0 .177.139.319.309.319s.307-.143.307-.318a.314.314 0 0 0-.307-.319.313.313 0 0 0-.309.319" clipRule="evenodd"/> <G filter="url(#a)"> <Path fill="#fff" d="M16.616 14.338a2.667 2.667 0 0 1-2.667-2.667v-.004c0-.733.297-1.4.777-1.88q.002-.003.003-.007.004-.002.008-.003A2.65 2.65 0 0 1 16.617 9h.003a2.667 2.667 0 0 1 2.667 2.667v.004a2.66 2.66 0 0 1-.777 1.879q-.001.004-.003.007c-.004 0-.004.004-.008.004a2.66 2.66 0 0 1-1.88.777z"/> </G> <Defs></Defs> </Svg>); }); Icon.displayName = 'DiscoverLogoDark'; export const DiscoverLogoDark = Icon;