react-native-svg#Line TypeScript Examples

The following examples show how to use react-native-svg#Line. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Wink.tsx    From react-native-bigheads with MIT License 6 votes vote down vote up
WinkEyes = ({ withLashes }: EyeProps) => {
  const { colors, skin } = useTheme()

  return (
    <>
      <Path
        d="M271.4,576.82c-1-28.36,18-52.36,43.28-63.56a62.37,62.37,0,0,1,8.16-2.7,70,70,0,0,1,42.21,2.68A71.67,71.67,0,0,1,374,517.4c29.53,15.88,42.79,53.25,31.36,83.46a61.68,61.68,0,0,1-4.18,8.82,54.68,54.68,0,0,1-17.51,20.83,69.25,69.25,0,0,1-7.85,5c-27.38,13-64.38,9-86.45-11.4a69.35,69.35,0,0,1-6.11-7.47,64.89,64.89,0,0,1-5.57-9.5A55.78,55.78,0,0,1,272,585.39,75.67,75.67,0,0,1,271.4,576.82Z"
        fill={skin.shadow}
      />
      <Path
        d="M269.77,558.47c-1-28.36,18-52.36,43.28-63.56a62.23,62.23,0,0,1,8.15-2.7,70,70,0,0,1,42.22,2.68,71.54,71.54,0,0,1,8.92,4.16c29.53,15.89,42.79,53.25,31.36,83.46a59.6,59.6,0,0,1-4.18,8.82,63.85,63.85,0,0,1-4.71,7.8,64.78,64.78,0,0,1-5.68,7,63.08,63.08,0,0,1-7.12,6.07,68.37,68.37,0,0,1-7.85,5c-27.38,13-64.38,9-86.44-11.4a67.24,67.24,0,0,1-6.11-7.47,65,65,0,0,1-5.58-9.5A55.59,55.59,0,0,1,270.32,567,71.3,71.3,0,0,1,269.77,558.47Z"
        fill={colors.white}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Circle cx="338.51" cy="559.08" r="12.24" fill={colors.outline} />
      <Line
        x1="715.03"
        y1="559.08"
        x2="603.4"
        y2="559.08"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="round"
        strokeMiterlimit={10}
        strokeWidth="16px"
      />
      <Path
        d="M627,574.16a114.14,114.14,0,0,1,13.07-1.56c4.36-.3,8.72-.43,13.08-.44s8.71.14,13.07.43a114.34,114.34,0,0,1,13.08,1.57,112.18,112.18,0,0,1-13.08,1.58q-6.54.43-13.07.42t-13.08-.43A112,112,0,0,1,627,574.16Z"
        fill={colors.outline}
      />

      {withLashes && <LeftLash />}
    </>
  )
}
Example #2
Source File: Grin.tsx    From react-native-bigheads with MIT License 6 votes vote down vote up
Grin = () => {
  const { colors } = useTheme()

  return (
    <>
      <Path
        d="M463.75,593.17c15.55,0,25.12,12.76,36.49,12.76s25.91-12.76,41.27-12.76,23.72,11.12,23.72,26.52c0,16.65-16.75,46-62.6,46s-65.4-27.74-65.4-45.45C437.23,603.89,448.2,593.17,463.75,593.17Z"
        fill={colors.white}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Line
        x1="477.85"
        y1="596.6"
        x2="477.85"
        y2="662.1"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Line
        x1="526.99"
        y1="596.6"
        x2="526.99"
        y2="662.1"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
    </>
  )
}
Example #3
Source File: SeriousMouth.tsx    From react-native-bigheads with MIT License 6 votes vote down vote up
SeriousMouth = () => {
  const { colors } = useTheme()

  return (
    <Line
      x1="446.66"
      y1="606.02"
      x2="542.53"
      y2="606.02"
      fill="none"
      stroke={colors.outline}
      strokeLinecap="round"
      strokeMiterlimit={10}
      strokeWidth="12px"
    />
  )
}
Example #4
Source File: SleepTimeChartAverage.tsx    From nyxo-app with GNU General Public License v3.0 6 votes vote down vote up
SleepTimeChartAverage = (props: SleepTimeChartAverageProps) => {
  if (!props.averageBedTime || !props.average) {
    return null
  }
  return (
    <G>
      <Line
        x1={0}
        x2={props.chartWidth}
        y1={props.averageBedTime}
        y2={props.averageBedTime}
        strokeWidth="2"
        stroke={colors.darkBlue}
        strokeDasharray={[10, 10]}
        strokeDashoffset={10}
        strokeLinecap="round"
      />
      <SvgText
        fontFamily="Montserrat-Medium"
        fontSize="13"
        fill={colors.darkBlue}
        alignmentBaseline="central"
        x={20}
        y={props.averageBedTime - 12}>
        {minutesToHoursString(props.average)}
      </SvgText>
      <SvgText
        fontFamily="Montserrat-Medium"
        fontSize="13"
        fill={colors.darkBlue}
        alignmentBaseline="central"
        x={20}
        y={props.averageBedTime + 12}>
        Sleep
      </SvgText>
    </G>
  )
}
Example #5
Source File: YTicks.tsx    From nyxo-app with GNU General Public License v3.0 6 votes vote down vote up
YTicks: FC<Props> = ({ chartWidth, scaleY, ticks }) => {
  const timeTicks = ticks.map((tick, index) => {
    return (
      <G key={index}>
        <Line
          stroke={color}
          strokeWidth={0.25}
          x1={40}
          x2={chartWidth}
          y1={scaleY(tick)}
          y2={scaleY(tick)}
        />
        <StyledText
          alignmentBaseline="middle"
          key={index}
          x={5}
          y={scaleY(tick)}>
          {format(new Date(), 'HH:mm')}
        </StyledText>
      </G>
    )
  })

  return <G>{timeTicks}</G>
}
Example #6
Source File: Candle.tsx    From react-native-wagmi-charts with MIT License 5 votes vote down vote up
AnimatedLine = Animated.createAnimatedComponent(Line)
Example #7
Source File: Shades.tsx    From react-native-bigheads with MIT License 5 votes vote down vote up
Shades = () => {
  const { colors } = useTheme()

  return (
    <>
      <Path
        d="M725,631.82a265.34,265.34,0,0,0,26.3-59.43c-17.24,35.74-49.84,65.46-92.11,65.46A106.75,106.75,0,0,1,552.58,531.22,105.67,105.67,0,0,1,560.41,491H758a105.33,105.33,0,0,1,7.62,33.39c.73-8,1.12-16.19,1.12-24.42a269.16,269.16,0,0,0-1.58-29H575v0H423.14v0H234.83a269.16,269.16,0,0,0-1.58,29c0,4.73.14,9.42.38,14.09A104.92,104.92,0,0,1,240.1,491H437.7a106.7,106.7,0,0,1-98.8,146.82c-38.8,0-68.82-25.83-87.48-56.89a266.14,266.14,0,0,0,24.76,52.84c19.39,12.07,38.25,24.05,62.72,24.05A126.78,126.78,0,0,0,465.53,531.22c0-1.81,0-3.61-.12-5.4,23.38-8.23,45.52-8.35,67.31-.36-.08,1.91-.14,3.83-.14,5.76A126.78,126.78,0,0,0,659.21,657.85C685,657.85,705,645.1,725,631.82ZM535.26,505.18c-23.4-7.55-47.64-7.42-72.33.39A124.62,124.62,0,0,0,459,491h80.1A122.6,122.6,0,0,0,535.26,505.18Z"
        opacity={0.15}
      />
      <Path
        d="M233.59,469.82s.41,32.23.41,50.2c0,64.41,40.48,116.63,104.9,116.63A116.68,116.68,0,0,0,444.2,469.82Z"
        fill={colors.outline}
        opacity={0.95}
      />
      <Path
        d="M553.91,469.82a116.68,116.68,0,0,0,105.3,166.83c64.42,0,107.54-52.22,107.54-116.63,0-18-2.23-50.2-2.23-50.2Z"
        fill={colors.outline}
        opacity={0.95}
      />
      <Path
        d="M320,626.86,443.07,503.78a93.05,93.05,0,0,0-10-17.27L302.72,616.88A93.62,93.62,0,0,0,320,626.86Z"
        fill={colors.white}
        opacity={0.25}
      />
      <Path
        d="M455.86,507.53c29.52-12,58.53-12.42,87,0"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="20px"
      />
      <Path
        d="M274.28,504.75c2.06,6.51-5.94,11.51-11.94,12.51-6,0-10-4-12-9-1-5,0-10,4-13,5-2,12-4,16.44,1.12A11.7,11.7,0,0,1,274.28,504.75Z"
        fill={colors.white}
      />
      <Path
        d="M285,500.93c-.61,4.33-6.61,4.33-7.61.33,0-3,1-4,3.84-4.1A3.77,3.77,0,0,1,285,500.93Z"
        fill={colors.white}
      />
      <Path
        d="M645.19,618.92,751.47,512.64a93.89,93.89,0,0,0-2.41-11.22L634,616.51A94.31,94.31,0,0,0,645.19,618.92Z"
        fill={colors.white}
        opacity={0.25}
      />
      <Path
        d="M590.68,505.73c2.06,6.51-5.94,11.51-11.94,12.51-6,0-10-4-12-9-1-5,0-10,4-13,5-2,12-4,16.45,1.12A11.69,11.69,0,0,1,590.68,505.73Z"
        fill={colors.white}
      />
      <Path
        d="M601.35,501.91c-.61,4.33-6.61,4.33-7.61.33,0-3,1-4,3.85-4.1A3.76,3.76,0,0,1,601.35,501.91Z"
        fill={colors.white}
      />
      <Path
        d="M233.59,469.82s-.34,31.69.41,50.2c2.6,64.36,40.48,116.63,104.9,116.63A116.68,116.68,0,0,0,444.2,469.82Z"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="20px"
      />
      <Path
        d="M553.91,469.82a116.68,116.68,0,0,0,105.3,166.83c64.42,0,107.54-51.53,107.54-115.94,0-18-2.23-50.89-2.23-50.89Z"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="20px"
      />
      <Line
        x1="423.14"
        y1="469.81"
        x2="574.97"
        y2="469.81"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="20px"
      />
    </>
  )
}
Example #8
Source File: DizzyEyes.tsx    From react-native-bigheads with MIT License 5 votes vote down vote up
DizzyEyes = () => {
  const { colors } = useTheme()

  return (
    <>
      <Line
        x1="375.88"
        y1="603.9"
        x2="306.24"
        y2="534.26"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="round"
        strokeMiterlimit={10}
        strokeWidth="16px"
      />
      <Line
        x1="306.24"
        y1="603.9"
        x2="375.88"
        y2="534.26"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="round"
        strokeMiterlimit={10}
        strokeWidth="16px"
      />
      <Line
        x1="695.99"
        y1="603.9"
        x2="626.34"
        y2="534.26"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="round"
        strokeMiterlimit={10}
        strokeWidth="16px"
      />
      <Line
        x1="626.34"
        y1="603.9"
        x2="695.99"
        y2="534.26"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="round"
        strokeMiterlimit={10}
        strokeWidth="16px"
      />
    </>
  )
}
Example #9
Source File: ClockTimes.tsx    From nyxo-app with GNU General Public License v3.0 5 votes vote down vote up
ThemedLine = styled(Line).attrs(({ theme }) => ({
  stroke: theme.SECONDARY_TEXT_COLOR
}))``
Example #10
Source File: MinuteSticks.tsx    From nyxo-app with GNU General Public License v3.0 5 votes vote down vote up
ThemedLine = styled(Line).attrs(({ theme }) => ({
  stroke: theme.SECONDARY_TEXT_COLOR
}))``
Example #11
Source File: Candle.tsx    From react-native-wagmi-charts with MIT License 4 votes vote down vote up
CandlestickChartCandle = ({
  candle,
  maxHeight,
  domain,
  margin = 2,
  positiveColor = '#10b981',
  negativeColor = '#ef4444',
  rectProps: overrideRectProps,
  lineProps: overrideLineProps,
  index,
  width,
  useAnimations = true,
  renderLine = (props) =>
    props.useAnimations ? <AnimatedLine {...props} /> : <Line {...props} />,
  renderRect = (props) =>
    props.useAnimations ? <AnimatedRect {...props} /> : <Rect {...props} />,
}: CandlestickChartCandleProps) => {
  const { close, open, high, low } = candle;
  const isPositive = close > open;
  const fill = isPositive ? positiveColor : negativeColor;
  const x = index * width;
  const max = Math.max(open, close);
  const min = Math.min(open, close);

  const lineProps = React.useMemo(
    () => ({
      stroke: fill,
      strokeWidth: 1,
      direction: isPositive ? 'positive' : 'negative',
      x1: x + width / 2,
      y1: getY({ maxHeight, value: low, domain }),
      x2: x + width / 2,
      y2: getY({ maxHeight, value: high, domain }),
      ...overrideLineProps,
    }),
    [
      domain,
      fill,
      high,
      isPositive,
      low,
      maxHeight,
      overrideLineProps,
      width,
      x,
    ]
  );
  const animatedLineProps = useAnimatedProps(() => ({
    x1: withTiming(x + width / 2),
    y1: withTiming(getY({ maxHeight, value: low, domain })),
    x2: withTiming(x + width / 2),
    y2: withTiming(getY({ maxHeight, value: high, domain })),
  }));

  const rectProps = React.useMemo(
    () => ({
      width: width - margin * 2,
      fill: fill,
      direction: isPositive ? 'positive' : 'negative',
      x: x + margin,
      y: getY({ maxHeight, value: max, domain }),
      height: getHeight({ maxHeight, value: max - min, domain }),
      ...overrideRectProps,
    }),
    [
      domain,
      fill,
      isPositive,
      margin,
      max,
      maxHeight,
      min,
      overrideRectProps,
      width,
      x,
    ]
  );
  const animatedRectProps = useAnimatedProps(() => ({
    x: withTiming(x + margin),
    y: withTiming(getY({ maxHeight, value: max, domain })),
    height: withTiming(getHeight({ maxHeight, value: max - min, domain })),
  }));

  return (
    <>
      {renderLine({
        ...lineProps,
        useAnimations,
        ...(useAnimations ? { animatedProps: animatedLineProps } : {}),
      })}
      {renderRect({
        ...rectProps,
        useAnimations,
        ...(useAnimations ? { animatedProps: animatedRectProps } : {}),
      })}
    </>
  );
}
Example #12
Source File: Breasts.tsx    From react-native-bigheads with MIT License 4 votes vote down vote up
Back = ({ clothingColor, braStraps }: BodyProps) => {
  const { skin, colors } = useTheme()

  const { base, shadow } = colors.clothing[clothingColor]

  return (
    <>
      <Path
        d="M502.07,878.86A69.31,69.31,0,1,1,371,847.39"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path d="M371,847.39a69.68,69.68,0,0,1,15-19.67" fill={skin.base} />
      <Path
        d="M365.65,844.66a27,27,0,0,1,3.38-5.84,37.22,37.22,0,0,1,4.53-5c.84-.76,1.69-1.5,2.58-2.19a21.1,21.1,0,0,1,2.81-1.92,15,15,0,0,1,7-2,25,25,0,0,1-1.75,6.81c-.39,1-.83,1.88-1.29,2.77l-1.3,2.67c-.85,1.76-1.69,3.49-2.55,5.19a54.51,54.51,0,0,1-2.76,5Z"
        fill={colors.outline}
      />
      <Path d="M489.33,838.82a69,69,0,0,1,12.74,40" fill={skin.base} />
      <Path
        d="M489.33,838.82a26.55,26.55,0,0,1,8.69,7.55,38.8,38.8,0,0,1,3.1,4.79c.93,1.67,1.77,3.39,2.55,5.15a55.12,55.12,0,0,1,3.46,11,48,48,0,0,1,.94,11.53h-12c-.19-3.25-.36-6.48-.7-9.73s-.77-6.48-1.4-9.74l-.5-2.44-.58-2.45c-.42-1.63-.87-3.26-1.29-4.93A104.17,104.17,0,0,1,489.33,838.82Z"
        fill={colors.outline}
      />
      <Path d="M641.65,878.86a69.14,69.14,0,0,0-21.94-50.6" fill={skin.base} />
      <Path
        d="M635.65,878.86A107,107,0,0,0,634.39,866a81.92,81.92,0,0,0-3.12-12.67c-.34-1-.74-2.07-1.11-3.11s-.84-2.05-1.25-3.09-.94-2-1.38-3.05l-1.46-3c-2-4.1-4.17-8.19-6.36-12.75a35.76,35.76,0,0,1,12.22,8.61c.83.94,1.7,1.86,2.47,2.85s1.54,2,2.25,3,1.43,2.09,2.07,3.18,1.31,2.18,1.88,3.32A62.19,62.19,0,0,1,646,863.58a56.6,56.6,0,0,1,1.62,15.28Z"
        fill={colors.outline}
      />
      <Path
        d="M503,878.86a69.31,69.31,0,1,0,138.61,0"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path d="M515.77,838.82a69,69,0,0,0-12.73,40" fill={skin.base} />
      <Path
        d="M515.77,838.82a104.17,104.17,0,0,1-2.27,10.75c-.42,1.67-.87,3.3-1.29,4.93l-.57,2.45-.5,2.44c-.63,3.26-1.09,6.5-1.41,9.74s-.5,6.48-.69,9.73H497a47,47,0,0,1,.94-11.53,54.48,54.48,0,0,1,3.46-11c.77-1.76,1.61-3.48,2.54-5.15a40,40,0,0,1,3.1-4.79A26.66,26.66,0,0,1,515.77,838.82Z"
        fill={colors.outline}
      />
      {braStraps && (
        <>
          <Line
            x1="383.44"
            y1="837.55"
            x2="383.44"
            y2="758.72"
            fill="none"
            stroke={colors.outline}
            strokeMiterlimit={10}
            strokeWidth="12px"
          />
          <Line
            x1="616.46"
            y1="837.55"
            x2="616.46"
            y2="758.72"
            fill="none"
            stroke={colors.outline}
            strokeMiterlimit={10}
            strokeWidth="12px"
          />
        </>
      )}
      <Path
        d="M470.5,897.78h53.9v19.7c-17.74-6.05-35.71-5.9-53.9,0Z"
        fill={base}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M638.1,878.86a69.06,69.06,0,0,0-18.63-47.28c-4.22-4.52-44.27,6.19-67.81,27.26-23.11,20.69-43.23,54.49-40.35,58.75A69.31,69.31,0,0,0,638.1,878.86Z"
        fill={base}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M598.11,848.39c-6.12,3.67-12.15,7.18-18,11a154.79,154.79,0,0,0-16.53,12.18c-5.15,4.46-10.11,9.32-15,14.26s-9.69,10-14.75,15.07a100,100,0,0,1,11.18-18.17A106.06,106.06,0,0,1,559.72,867a84.36,84.36,0,0,1,18.14-11.73A83.45,83.45,0,0,1,598.11,848.39Z"
        fill={colors.white}
      />
      <Path
        d="M361.9,878.86a69.06,69.06,0,0,1,18.63-47.28c4.22-4.52,44.27,6.19,67.81,27.26,23.11,20.69,43.23,54.49,40.35,58.75A69.31,69.31,0,0,1,361.9,878.86Z"
        fill={base}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M455.75,938.92a85.36,85.36,0,0,1-85.36-85.36,86.38,86.38,0,0,1,.44-8.71,69.31,69.31,0,0,0,96.31,93.29A85.67,85.67,0,0,1,455.75,938.92Z"
        fill={shadow}
      />
      <Path
        d="M361.9,878.86a69.06,69.06,0,0,1,18.63-47.28c4.22-4.52,44.27,6.19,67.81,27.26,23.11,20.69,43.23,54.49,40.35,58.75A69.31,69.31,0,0,1,361.9,878.86Z"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M401.89,848.39a83.45,83.45,0,0,1,20.25,6.87A84.36,84.36,0,0,1,440.28,867a106.06,106.06,0,0,1,14.65,15.71,100,100,0,0,1,11.18,18.17c-5.06-5-9.84-10.13-14.75-15.07s-9.84-9.8-15-14.26a154.79,154.79,0,0,0-16.53-12.18C414,855.57,408,852.06,401.89,848.39Z"
        fill={colors.white}
      />
    </>
  )
}
Example #13
Source File: DressShirt.tsx    From react-native-bigheads with MIT License 4 votes vote down vote up
DressShirt = ({ color, graphic: Graphic = Noop }: ClothingProps) => {
  const { colors, skin } = useTheme()

  const { base } = colors.clothing[color]

  return (
    <>
      <Polygon
        points="547.85 847.98 505.72 813.61 580.35 758.82 419.65 758.82 494.28 813.61 452.15 847.98 414.52 791.48 414.52 869.96 588.78 869.96 588.78 786.52 547.85 847.98"
        fill={skin.shadow}
      />
      <Path
        d="M616.66,758.16l-42.73.1a119.49,119.49,0,0,1-1.43,13.48,63.7,63.7,0,0,1-1.74,6.34c-2.34,6.49-17.26,12-21.49,16.73a48.22,48.22,0,0,1-4.5,4.43c-25.17,18.2-65.17,19.2-89.48-.58a51.36,51.36,0,0,1-7.11-7.61c-4.23-5.56-16.4-11.59-18.1-18.94a60,60,0,0,1-1.08-6.59,63.55,63.55,0,0,1-.36-6.8s-45.21-.56-45.21-.56a13.28,13.28,0,0,0-13.28,13.27v284.69a13.28,13.28,0,0,0,13.28,13.27H622.36a13.27,13.27,0,0,0,13.27-13.27V778C635.63,765.82,629.75,758.16,616.66,758.16Z"
        fill={colors.white}
      />
      <Path d="M612.84,758.16c63.54,0,88.52,43.39,78.9,272-18.74,6.7-55.91,4.59-55.91,4.59Z" fill={colors.white} />
      <Polygon
        points="451.06 855.4 499.51 831.31 548.09 855.4 511.03 812.38 467.14 813.21 451.06 855.4"
        fill={colors.clothing.white.shadow}
      />
      <Path
        d="M635.63,831.31s-22.79,84.54-19.31,234l33.21-31,3.58-137.58C647.49,824.5,635.63,831.31,635.63,831.31Z"
        fill={colors.clothing.white.shadow}
      />
      <Path d="M389,758.16c-61.78,0-88.88,56.45-80.75,245.48,22.42,9.91,56.19,5.58,56.19,5.58Z" fill={colors.white} />
      <Path
        d="M306.94,957.49q.26,20.46,1.21,43.48c15.27.73,43.69.88,57.11,0l4.18-42.81C358.67,956.9,323.66,956.49,306.94,957.49Z"
        fill={colors.clothing.white.shadow}
      />
      <Path
        d="M370.12,831.31l-.5,177.69-13.35.9C353.3,860.85,370.12,831.31,370.12,831.31Z"
        fill={colors.clothing.white.shadow}
      />
      <Path
        d="M612.84,758.16c67.42,0,78.45,56.28,78.9,133.78v138.22s-50,5.53-55.91,4.59l-.1-142.11"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="square"
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M389,758.16c-25.73,0-43.52,8.12-55.71,22.44-19.45,22.87-24.63,61.54-25,108.27v123.77c12.06,3.32,61.36-3.64,61.36-3.64l.49-118.6"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="square"
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M372.6,1011.24c-1.83,2.61-73.77,1.92-74.67,0s-2.19-37.5,0-41c1.8-2.88,72.11-2.27,74.67,0S374.43,1008.63,372.6,1011.24Z"
        fill={colors.white}
        stroke={colors.outline}
        strokeLinecap="square"
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M383.43,1069.39H500c-109.19,0-100.91-231.14-129.89-231.14v217.87A13.28,13.28,0,0,0,383.43,1069.39Z"
        fill={colors.clothing.white.shadow}
      />
      <Path
        d="M364.15,860.29c-.19-3.67-.11-7.35.06-11s.47-7.34.85-11c.2-1.83.41-3.67.65-5.51s.49-3.67.85-5.5a44.05,44.05,0,0,1,3.59-11,44.05,44.05,0,0,1,3.59,11c.36,1.83.62,3.67.85,5.5s.45,3.68.65,5.51q.58,5.52.86,11c.16,3.67.24,7.35,0,11Z"
        fill={colors.outline}
      />
      <Path
        d="M635.63,869.4v8c.26,34,.26,69,0,102.76,0,2.87,0,5.72,0,8.53v67.41a13.27,13.27,0,0,1-13.27,13.27H383.43a13.28,13.28,0,0,1-13.28-13.27V990.3c-.26-34.86-.26-69.86,0-105.3V860.29"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M697.42,970.24c2.22,2.26,1.59,38.39,0,41s-64,1.92-64.77,0-1.9-37.5,0-41c.27-.5,2.28-.89,5.45-1.18"
        fill={colors.white}
        stroke={colors.outline}
        strokeLinecap="square"
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path d="M678.92,968.3c3.8.3,15-1.18,15.42-.76" fill={colors.white} />
      <Path
        d="M678.92,968.3a23.67,23.67,0,0,1,1.88-2.16,12.13,12.13,0,0,1,1.78-1.47,12.74,12.74,0,0,1,1.81-1c.61-.29,1.22-.54,1.83-.79a24.1,24.1,0,0,1,3.79-1.18,15.85,15.85,0,0,1,2-.31c.36,0,.73,0,1.17,0,.25,0,.46,0,.82,0,.12,0,.44,0,.71.07l.35,0,.49.11.25.06.2.06.57.21a6.45,6.45,0,0,1,2,1.37l4.2,4.29-8.65,8.48-4.12-4.37a5.73,5.73,0,0,0,1.91,1.32c.18.08.36.14.54.2l.17,0,.19.05a2.34,2.34,0,0,0,.38.09l.19,0h0c.1,0,.26,0,.22,0s-.07,0-.15,0l-.75,0c-.57,0-1.19,0-1.82,0a26.27,26.27,0,0,1-3.92-.53c-.67-.15-1.34-.3-2-.49a12.56,12.56,0,0,1-2-.72,10,10,0,0,1-2.08-1.32A8.19,8.19,0,0,1,678.92,968.3Z"
        fill={colors.outline}
      />
      <Polygon
        points="592.51 763.64 517.84 818.45 559.98 852.83 619.4 763.59 592.51 763.64"
        fill={colors.clothing.white.shadow}
      />
      <Path
        d="M629.63,869.4c-.19-4.18-.1-8.36.06-12.53s.47-8.36.86-12.53c.2-2.09.4-4.18.64-6.27s.49-4.18.86-6.27a54.83,54.83,0,0,1,3.58-12.53,54.37,54.37,0,0,1,3.59,12.53c.36,2.09.63,4.18.85,6.27s.45,4.18.65,6.27c.39,4.17.69,8.35.85,12.53s.26,8.35.06,12.53Z"
        fill={colors.outline}
      />
      <Path d="M383.43,758.26l233.23-.1" fill="none" stroke={colors.outline} strokeMiterlimit={10} strokeWidth="12px" />
      <Polygon
        points="529.39 835.55 507.04 813.21 484.7 835.55 495.68 846.53 485.96 953.16 506.7 969.33 528.12 953.16 518.41 846.53 529.39 835.55"
        fill={colors.clothing.white.shadow}
      />
      <Line
        x1="500.04"
        y1="813.21"
        x2="500.04"
        y2="1069.39"
        fill="none"
        stroke={colors.outline}
        strokeLinecap="square"
        strokeMiterlimit={10}
        strokeWidth="6px"
      />
      <Polygon points="500.04 813.21 522.39 828.55 500.04 850.9 477.7 828.55 500.04 813.21" fill={base} />
      <Path
        d="M419.62,758.8s43.27,39.34,74.66,54.81C479,838.82,452.15,848,452.15,848l-59.43-89.23Z"
        fill={colors.white}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <Path
        d="M580.38,758.8S541,800,505.72,813.61c10,20.28,42.13,34.37,42.13,34.37l59.43-89.23Z"
        fill={colors.white}
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="12px"
      />
      <G transform="translate(0 30)">
        <Graphic />
      </G>
      <Polygon
        points="478.96 946.16 499.7 962.33 521.12 946.16 511.12 836.38 488.96 836.38 478.96 946.16"
        fill={base}
      />
      <Polyline
        points="477.7 828.55 488.68 839.53 478.96 946.16 499.7 962.33 521.12 946.16 511.41 839.53 522.39 828.55"
        fill="none"
        stroke={colors.outline}
        strokeMiterlimit={10}
        strokeWidth="8px"
      />
      <Path d="M638.1,969.06c7.51-.71,21.51-.89,34-.67" fill={colors.white} />
      <Path
        d="M637.54,963.08a50.92,50.92,0,0,1,8.84-.47c2.9.07,5.78.3,8.66.65,1.43.18,2.87.37,4.3.61a43.36,43.36,0,0,1,4.29.85,27.53,27.53,0,0,1,8.5,3.67,30.13,30.13,0,0,1-8.52,3.5c-1.41.36-2.82.63-4.23.86s-2.81.47-4.21.69c-2.8.42-5.59.78-8.35,1s-5.52.5-8.16.54l-6,.1-1-11.13Z"
        fill={colors.outline}
      />
      <Circle cx="515.77" cy="982.93" r="4.8" fill={colors.outline} />
      <Path
        d="M490.89,836.19c-.05-.06,0,0,0,0l.07.05a.88.88,0,0,1,.17.12l.38.29c.25.21.52.42.78.65.53.45,1.09.93,1.7,1.39s1.27.9,2,1.42a27.37,27.37,0,0,1,2.71,2.33,5.61,5.61,0,0,1-3.13,2.43,9.41,9.41,0,0,1-3.7.27,11,11,0,0,1-3.63-1,9.72,9.72,0,0,1-1.65-1,8.85,8.85,0,0,1-.77-.63c-.12-.11-.25-.23-.37-.36l-.2-.21-.25-.29Z"
        fill={colors.outline}
      />
    </>
  )
}
Example #14
Source File: svgs.tsx    From nyxo-app with GNU General Public License v3.0 4 votes vote down vote up
icons = {
  settingsLight: (
    <G>
      <Path
        {...defaultProps}
        d="M20.254,13.5H22.5a1,1,0,0,0,1-1v-1a1,1,0,0,0-1-1H20.253a11.8,11.8,0,0,0-1-2.922l1.589-1.588a1,1,0,0,0,0-1.414L19.424,3.162a1,1,0,0,0-1.414,0L16.42,4.751a11.769,11.769,0,0,0-2.92-1V1.5a1,1,0,0,0-1-1h-1a1,1,0,0,0-1,1V3.749a11.777,11.777,0,0,0-2.921,1L5.989,3.162a1,1,0,0,0-1.414,0L3.16,4.577a1,1,0,0,0,0,1.414L4.75,7.58a11.821,11.821,0,0,0-1,2.921H1.5a1,1,0,0,0-1,1v1a1,1,0,0,0,1,1H3.746a11.821,11.821,0,0,0,1,2.921l-1.59,1.59a1,1,0,0,0,0,1.414L4.575,20.84a1,1,0,0,0,1.414,0L7.578,19.25a11.8,11.8,0,0,0,2.922,1V22.5a1,1,0,0,0,1,1h1a1,1,0,0,0,1-1V20.255a11.8,11.8,0,0,0,2.92-1l1.591,1.589a1,1,0,0,0,1.414,0l1.414-1.414a1,1,0,0,0,0-1.414l-1.589-1.59A11.821,11.821,0,0,0,20.254,13.5Z"
      />
      <Circle {...defaultProps} cx="12" cy="12.001" r="4.5" />
    </G>
  ),
  settingsBold: (
    <G>
      <Path d="M22.421,9.763l-1.266-.449a1.374,1.374,0,0,1-.78-1.886h0l.576-1.213A2.376,2.376,0,0,0,17.786,3.05l-1.213.577a1.375,1.375,0,0,1-1.885-.782l-.45-1.265a2.376,2.376,0,0,0-4.476,0l-.45,1.266a1.375,1.375,0,0,1-1.885.781L6.214,3.05A2.376,2.376,0,0,0,3.049,6.215l.576,1.213a1.375,1.375,0,0,1-.78,1.886l-1.266.45a2.375,2.375,0,0,0,0,4.475l1.266.45a1.374,1.374,0,0,1,.78,1.885l-.576,1.213a2.376,2.376,0,0,0,3.165,3.165l1.213-.576a1.373,1.373,0,0,1,1.885.781l.45,1.265a2.376,2.376,0,0,0,4.476,0l.45-1.266a1.374,1.374,0,0,1,1.885-.78l1.213.576a2.376,2.376,0,0,0,3.165-3.165l-.576-1.213a1.374,1.374,0,0,1,.78-1.885l1.266-.451a2.375,2.375,0,0,0,0-4.475ZM12,16.785a4.93,4.93,0,0,1-4.441-2.944,4.813,4.813,0,0,1,2.6-6.281,4.868,4.868,0,0,1,6.281,2.6,4.813,4.813,0,0,1-2.6,6.281A4.589,4.589,0,0,1,12,16.785Z" />
    </G>
  ),
  userBold: (
    <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,2.5a9.482,9.482,0,0,1,7.3,15.561.5.5,0,0,1-.589.136c-.88-.4-1.945-.79-3.16-1.237l-.744-.274a.8.8,0,0,1-.324-.552A1.99,1.99,0,0,1,14.67,14.6c1.068-1.176,1.73-2.44,1.73-5.1A4.294,4.294,0,0,0,12,4.832,4.294,4.294,0,0,0,7.6,9.5c0,2.663.662,3.927,1.73,5.1a1.99,1.99,0,0,1,.192,1.533.8.8,0,0,1-.324.552l-.744.274c-1.215.447-2.28.84-3.16,1.237a.5.5,0,0,1-.589-.136A9.482,9.482,0,0,1,12,2.5Z" />
  ),
  userLight: (
    <G>
      <Circle {...defaultProps} cx="12" cy="12" r="11.5" />
      <Path
        {...defaultProps}
        d="M3.959,20.221a25.59,25.59,0,0,1,5.413-2.352c.837-.309.928-2.229.328-2.889-.866-.953-1.6-2.07-1.6-4.766A3.812,3.812,0,0,1,12,6.047a3.812,3.812,0,0,1,3.9,4.167c0,2.7-.734,3.813-1.6,4.766-.6.66-.509,2.58.328,2.889a25.59,25.59,0,0,1,5.413,2.352"
      />
    </G>
  ),
  clockBold: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm5.2,17.221a1.016,1.016,0,0,1-1.413.062l-4.959-4.546A1,1,0,0,1,10.5,12V6.5a1,1,0,0,1,2,0v5.06l4.634,4.248A1,1,0,0,1,17.2,17.222Z" />
    </G>
  ),
  clockRegular: (
    <G>
      <Circle fill="none" {...defaultProps} cx="12" cy="12" r="10.5" />
      <Circle
        fill="none"
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth="1.5px"
        cx="12"
        cy="12"
        r="1.5"
      />
      <Line fill="none" {...defaultProps} x1="12" y1="10.5" x2="12" y2="5.25" />
      <Line
        fill="none"
        {...defaultProps}
        x1="13.061"
        y1="13.061"
        x2="15.75"
        y2="15.75"
      />
    </G>
  ),
  schoolPhysicalBold: (
    <G>
      <Path d="M15.956,12.2a.5.5,0,0,0-.064-.427A6.809,6.809,0,0,0,6.1,10.205.25.25,0,0,1,5.7,10,8.418,8.418,0,0,0,5.364,7.23.5.5,0,0,1,5.525,6.7,3.334,3.334,0,0,0,6.74,4.12,3.373,3.373,0,0,0,3.024.767,3.491,3.491,0,0,0,0,4.284v9.021A3.949,3.949,0,0,0,3.944,17.25H9a.5.5,0,0,0,.5-.5v-.415a2,2,0,0,1,1.26-1.868l4.9-1.947A.5.5,0,0,0,15.956,12.2Z" />
      <Path d="M23.685,15.86l-6-2.382a.5.5,0,0,0-.37,0l-6,2.382a.5.5,0,0,0-.315.475v3.13a.5.5,0,0,0,1,0v-2.08a.25.25,0,0,1,.333-.236l5,1.765a.49.49,0,0,0,.332,0l6-2.117a.5.5,0,0,0,.019-.937Z" />
      <Path d="M20.763,19.079l-2.93,1.034a1,1,0,0,1-.666,0l-2.93-1.034a.5.5,0,0,0-.666.472V21.7a.5.5,0,0,0,.334.471l2.573.908a3.069,3.069,0,0,0,2.043,0l2.574-.908a.5.5,0,0,0,.334-.471V19.551a.5.5,0,0,0-.666-.472Z" />
    </G>
  ),
  percentage: (
    <G>
      <Path d="M15.116,7.116l-8,8a1.25,1.25,0,1,0,1.767,1.768l8-8a1.25,1.25,0,0,0-1.767-1.768Z" />
      <Path d="M5.750 8.135 A2.250 2.250 0 1 0 10.250 8.135 A2.250 2.250 0 1 0 5.750 8.135 Z" />
      <Path d="M13.750 16.135 A2.250 2.250 0 1 0 18.250 16.135 A2.250 2.250 0 1 0 13.750 16.135 Z" />
      <Path d="M2.913,22l-.652.031A.25.25,0,0,1,2,21.781v-.694a1,1,0,0,0-2,0v.956A1.958,1.958,0,0,0,1.956,24h.957a1,1,0,1,0,0-2Z" />
      <Path d="M23,20.087a1,1,0,0,0-1,1l.031.651a.251.251,0,0,1-.069.184.247.247,0,0,1-.181.078h-.7a1,1,0,0,0,0,2h.957A1.959,1.959,0,0,0,24,22.043v-.956A1,1,0,0,0,23,20.087Z" />
      <Path d="M2.913,0H1.956A1.958,1.958,0,0,0,0,1.957v.956a1,1,0,0,0,2,0l-.032-.651a.251.251,0,0,1,.069-.184A.247.247,0,0,1,2.218,2h.695a1,1,0,0,0,0-2Z" />
      <Path d="M21.086,2l.652-.031a.251.251,0,0,1,.184.069A.247.247,0,0,1,22,2.219v.694a1,1,0,1,0,2,0V1.957A1.959,1.959,0,0,0,22.043,0h-.957a1,1,0,0,0,0,2Z" />
      <Path d="M23,5.5a1,1,0,0,0-1,1V10a1,1,0,0,0,2,0V6.5A1,1,0,0,0,23,5.5Z" />
      <Path d="M23,13a1,1,0,0,0-1,1v3.5a1,1,0,0,0,2,0V14A1,1,0,0,0,23,13Z" />
      <Path d="M1,11a1,1,0,0,0,1-1V6.5a1,1,0,0,0-2,0V10A1,1,0,0,0,1,11Z" />
      <Path d="M0,17.5a1,1,0,0,0,2,0V14a1,1,0,0,0-2,0Z" />
      <Path d="M6.5,2H10a1,1,0,0,0,0-2H6.5a1,1,0,0,0,0,2Z" />
      <Path d="M17.5,0H14a1,1,0,0,0,0,2h3.5a1,1,0,0,0,0-2Z" />
      <Path d="M10,22H6.5a1,1,0,0,0,0,2H10a1,1,0,0,0,0-2Z" />
      <Path d="M17.5,22H14a1,1,0,0,0,0,2h3.5a1,1,0,0,0,0-2Z" />
    </G>
  ),
  schoolPhysical: (
    <G>
      <Path
        fill="none"
        {...defaultProps}
        d="M6.75,17.25h-2.3A3.682,3.682,0,0,1,.75,13.583V3.98A3.183,3.183,0,0,1,3.512.766,3.046,3.046,0,0,1,5.188,6.535a8.712,8.712,0,0,1,0,6.437,6.794,6.794,0,0,1,10.668-1.838"
      />
      <Polyline
        fill="none"
        {...defaultProps}
        points="20.25 18.375 20.25 22.333 17.25 23.25 14.25 22.333 14.25 18.375"
      />
      <Polygon
        fill="none"
        {...defaultProps}
        points="23.25 17.25 17.25 15 11.25 17.25 17.25 19.5 23.25 17.25"
      />
      <Line
        fill="none"
        {...defaultProps}
        x1="11.25"
        y1="17.25"
        x2="11.25"
        y2="20.25"
      />
    </G>
  ),

  emailUnreadRegular: (
    <G>
      <Rect
        fill="none"
        {...defaultProps}
        x="1.5"
        y="4.75"
        width="21"
        height="15"
        rx="1.5"
        ry="1.5"
      />
      <Path
        fill="none"
        {...defaultProps}
        d="M22.161,5.3l-8.144,6.264a3.308,3.308,0,0,1-4.034,0L1.839,5.3"
      />
    </G>
  ),
  bookLamp: (
    <G>
      <Path d="M23.25,11.748a.75.75,0,0,0-.75.75v7.221a.256.256,0,0,1-.256.249,23.465,23.465,0,0,0-8.779,1.7.5.5,0,0,1-.715-.452V9.37c0-2.686-5.682-4.078-10.961-4.235a1.7,1.7,0,0,0-1.255.49A1.764,1.764,0,0,0,0,6.886V19.719a1.747,1.747,0,0,0,1.713,1.748c4.036.116,7.69.961,9.093,2.1a1.876,1.876,0,0,0,2.388,0c1.4-1.143,5.057-1.988,9.093-2.1A1.747,1.747,0,0,0,24,19.719V12.5A.75.75,0,0,0,23.25,11.748Zm-12,9.464a.5.5,0,0,1-.715.452,23.465,23.465,0,0,0-8.779-1.7.256.256,0,0,1-.256-.249V6.886A.256.256,0,0,1,1.579,6.7a.2.2,0,0,1,.165-.067c6.241.186,9.506,1.88,9.506,2.736Z" />
      <Path d="M9.258,10.149a21.869,21.869,0,0,0-5.186-1.02.742.742,0,0,0-.818.673.751.751,0,0,0,.674.82,20.181,20.181,0,0,1,4.851.949.75.75,0,0,0,.479-1.422Z" />
      <Path d="M9.258,13.822A21.854,21.854,0,0,0,4.072,12.8a.75.75,0,0,0-.144,1.493,20.224,20.224,0,0,1,4.851.95.75.75,0,0,0,.479-1.422Z" />
      <Path d="M9.258,17.5a21.854,21.854,0,0,0-5.186-1.021.75.75,0,0,0-.144,1.493,20.224,20.224,0,0,1,4.851.95A.75.75,0,0,0,9.258,17.5Z" />
      <Path d="M18.5,3a1,1,0,0,0,1-1V1a1,1,0,0,0-2,0V2A1,1,0,0,0,18.5,3Z" />
      <Path d="M22.354,4.122a1,1,0,0,0,.764-.355L23.764,3a1,1,0,1,0-1.528-1.291l-.645.763a1,1,0,0,0,.763,1.646Z" />
      <Path d="M13.882,3.767a1,1,0,1,0,1.527-1.291l-.645-.763A1,1,0,1,0,13.236,3Z" />
      <Path d="M18.5,16.75a.75.75,0,0,0,.75-.75v-.242a.469.469,0,0,1,.237-.407A2,2,0,0,0,20.5,13.612v-.783a.5.5,0,0,1,.25-.433,4.5,4.5,0,1,0-4.5,0,.5.5,0,0,1,.25.433v.783a2,2,0,0,0,1.013,1.739.469.469,0,0,1,.237.407V16A.75.75,0,0,0,18.5,16.75ZM16,8.5A2.5,2.5,0,1,1,18.5,11,2.5,2.5,0,0,1,16,8.5Z" />
    </G>
  ),
  nightMoonBegin: (
    <G>
      <Line {...defaultProps} x1="11.656" y1="23.011" x2="11.656" y2="15.511" />
      <Polyline
        strokeLinecap="round"
        strokeLinejoin="round"
        strokeWidth="1.5px"
        points="13.906 17.761 11.656 15.511 9.406 17.761"
      />
      <Line {...defaultProps} x1="14.656" y1="20.011" x2="22.906" y2="20.011" />
      <Line {...defaultProps} x1="1.156" y1="20.011" x2="8.656" y2="20.011" />
      <Path
        {...defaultProps}
        d="M15.406,8.761a6,6,0,0,1-6-6A5.93,5.93,0,0,1,9.745.851a5.984,5.984,0,1,0,7.571,7.571A5.957,5.957,0,0,1,15.406,8.761Z"
      />
    </G>
  ),
  nightMoonEnd: (
    <G>
      <Line {...defaultProps} x1="12" y1="15.617" x2="12" y2="23.117" />
      <Polyline {...defaultProps} points="9.75 20.867 12 23.117 14.25 20.867" />
      <Line {...defaultProps} x1="16.5" y1="20.117" x2="23.25" y2="20.117" />
      <Line {...defaultProps} x1="1.5" y1="20.117" x2="7.5" y2="20.117" />
      <Path
        {...defaultProps}
        d="M15.75,8.867a6,6,0,0,1-6-6,5.931,5.931,0,0,1,.34-1.91,5.984,5.984,0,1,0,7.57,7.571A5.957,5.957,0,0,1,15.75,8.867Z"
      />
    </G>
  ),

  doubleBed: (
    <G>
      <Path
        {...defaultProps}
        d="M3,11.25V9A1.5,1.5,0,0,1,4.5,7.5h6A1.5,1.5,0,0,1,12,9v2.25"
      />
      <Path
        {...defaultProps}
        d="M12,11.25V9a1.5,1.5,0,0,1,1.5-1.5h6A1.5,1.5,0,0,1,21,9v2.25"
      />
      <Path
        {...defaultProps}
        d="M2.75,11.25h18.5a2,2,0,0,1,2,2V18a0,0,0,0,1,0,0H.75a0,0,0,0,1,0,0V13.25A2,2,0,0,1,2.75,11.25Z"
      />
      <Line {...defaultProps} x1="0.75" y1="18" x2="0.75" y2="21" />
      <Line {...defaultProps} x1="23.25" y1="18" x2="23.25" y2="21" />
      <Path
        {...defaultProps}
        d="M21,11.25V4.5A1.5,1.5,0,0,0,19.5,3H4.5A1.5,1.5,0,0,0,3,4.5v6.75"
      />
    </G>
  ),

  // Smileys!!

  smileyEyesOnly: (
    <G>
      <Path
        {...defaultProps}
        d="M6.5,9.75a.25.25,0,1,1-.25.25.25.25,0,0,1,.25-.25"
      />
      <Path
        {...defaultProps}
        d="M17.5,9.75a.25.25,0,1,0,.25.25.25.25,0,0,0-.25-.25"
      />
      <Circle {...defaultProps} cx="12" cy="12" r="11.5" />
    </G>
  ),
  smileyIndifferent: (
    <G>
      <Circle {...defaultProps} cx="12" cy="12" r="11.5" />
      <Path
        {...defaultProps}
        d="M8.5,7.75A.25.25,0,1,1,8.25,8a.25.25,0,0,1,.25-.25"
      />
      <Path
        {...defaultProps}
        d="M15.5,7.75a.25.25,0,1,0,.25.25.25.25,0,0,0-.25-.25"
      />
      <Line {...defaultProps} x1="5.5" y1="15.5" x2="18.5" y2="15.5" />
    </G>
  ),
  smileyIndifferentBold: (
    <G>
      <Path d="M17,15H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z" />
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" />
      <Circle cx="8" cy="9" r="2" />
      <Circle cx="16" cy="9" r="2" />
    </G>
  ),
  smileySmirkGlasses: (
    <G>
      <Path {...defaultProps} d="M17,16.159A6.516,6.516,0,0,1,10.38,18.3" />
      <Circle {...defaultProps} cx="12" cy="12" r="11.5" />
      <Path
        {...defaultProps}
        d="M22.586,7.5l-.922,2.907A3,3,0,0,1,18.8,12.5H14.566a1,1,0,0,1-.857-.486l-.952-1.585a.882.882,0,0,0-1.514,0l-.952,1.585a1,1,0,0,1-.857.486H5.2a3,3,0,0,1-2.86-2.093L1.414,7.5Z"
      />
    </G>
  ),

  smileyUnhappy: (
    <G>
      <Path
        {...defaultProps}
        d="M8.5,7.75A.25.25,0,1,1,8.25,8a.25.25,0,0,1,.25-.25"
      />
      <Path
        {...defaultProps}
        d="M15.5,7.75a.25.25,0,1,0,.25.25.25.25,0,0,0-.25-.25"
      />
      <Path {...defaultProps} d="M10.38,18.5A6.521,6.521,0,0,1,17,16.355" />
      <Circle {...defaultProps} cx="12" cy="12" r="11.5" />
    </G>
  ),
  smileySadBold: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" />
      <Path d="M12,14a5.624,5.624,0,0,0-4.87,3.008,1,1,0,1,0,1.74.984A3.654,3.654,0,0,1,12,16a3.654,3.654,0,0,1,3.13,1.992,1,1,0,0,0,1.74-.984A5.624,5.624,0,0,0,12,14Z" />
      <Circle cx="8" cy="9" r="2" />
      <Circle cx="16" cy="9" r="2" />
    </G>
  ),
  smileySmirkBold: (
    <G>
      <Path d="M17.887,13.077a1,1,0,0,0-1.308.538,5.508,5.508,0,0,1-7.194,2.964,1,1,0,1,0-.77,1.846,7.508,7.508,0,0,0,9.81-4.04A1,1,0,0,0,17.887,13.077Z" />
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" />
      <Circle cx="8" cy="9" r="2" />
      <Circle cx="16" cy="9" r="2" />
    </G>
  ),

  // Interface icons

  chevronLeft: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm3.906,17.008a1.25,1.25,0,1,1-1.521,1.984L7.039,13.358a1.711,1.711,0,0,1,0-2.716l7.346-5.634a1.25,1.25,0,1,1,1.521,1.984L9.635,11.8a.249.249,0,0,0,0,.4Z" />
    </G>
  ),
  chevronRight: (
    <G>
      <Path d="M12,0C5.373,0,0,5.373,0,12s5.373,12,12,12s12-5.373,12-12C23.993,5.376,18.624,0.007,12,0z M16.961,13.358l-7.346,5.634 c-0.545,0.424-1.33,0.326-1.754-0.219c-0.424-0.545-0.326-1.33,0.219-1.754c0.005-0.004,0.009-0.007,0.014-0.011l6.271-4.81 c0.11-0.082,0.134-0.238,0.052-0.348c-0.015-0.02-0.032-0.037-0.052-0.052L8.094,6.992c-0.551-0.416-0.66-1.2-0.244-1.751 s1.2-0.66,1.751-0.244C9.606,5.001,9.61,5.004,9.615,5.008l7.346,5.634c0.75,0.575,0.892,1.649,0.317,2.399 C17.187,13.16,17.08,13.267,16.961,13.358z" />
    </G>
  ),
  informationCircle: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm.25,5a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,12.25,5ZM14.5,18.5h-4a1,1,0,0,1,0-2h.75a.25.25,0,0,0,.25-.25v-4.5a.25.25,0,0,0-.25-.25H10.5a1,1,0,0,1,0-2h1a2,2,0,0,1,2,2v4.75a.25.25,0,0,0,.25.25h.75a1,1,0,1,1,0,2Z" />
    </G>
  ),
  shovel: (
    <G>
      <Path d="M8.474,18.025a.248.248,0,0,0,.052-.2.252.252,0,0,0-.12-.172,5.107,5.107,0,0,0-2.566-.666c-2.886,0-4.591,5.312-4.983,6.681a.248.248,0,0,0,.041.22.251.251,0,0,0,.2.1H4.533a.249.249,0,0,0,.249-.222,2,2,0,0,1,.251-.77A38.61,38.61,0,0,1,8.474,18.025Z" />
      <Path d="M16.408,12.135a.25.25,0,0,0,.184-.325,2.484,2.484,0,0,0-.569-.968l-2.4-2.4a1,1,0,0,0-1.414,0L11.145,9.5,5.135,3.49,6.9,1.723A1,1,0,0,0,5.488.309L.539,5.258A1,1,0,0,0,1.953,6.672L3.721,4.9l6.011,6.011L8.671,11.976a1,1,0,0,0,0,1.414l1.948,1.948a.251.251,0,0,0,.347.006A12.225,12.225,0,0,1,16.408,12.135Z" />
      <Path d="M17.77,13.984c-4.67,0-9.668,7.8-10.775,9.621a.25.25,0,0,0,.214.379H23.5a.254.254,0,0,0,.183-.079.252.252,0,0,0,.066-.189C23.639,22.125,22.807,13.984,17.77,13.984Z" />
    </G>
  ),
  lockCircle: (
    <G>
      <Path d="M19.5,9.5h-.75V6.75a6.75,6.75,0,0,0-13.5,0V9.5H4.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h15a2,2,0,0,0,2-2V11.5A2,2,0,0,0,19.5,9.5Zm-9.5,6a2,2,0,1,1,3,1.723V19.5a1,1,0,0,1-2,0V17.223A1.994,1.994,0,0,1,10,15.5ZM7.75,6.75a4.25,4.25,0,0,1,8.5,0V9a.5.5,0,0,1-.5.5H8.25a.5.5,0,0,1-.5-.5Z" />
    </G>
  ),
  closeCircle: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm5.49,16.076a1,1,0,1,1-1.414,1.414l-3.9-3.9a.252.252,0,0,0-.354,0l-3.9,3.9a1.012,1.012,0,0,1-1.414,0,1,1,0,0,1,0-1.414l3.9-3.9a.249.249,0,0,0,0-.353l-3.9-3.9A1,1,0,0,1,7.924,6.51l3.9,3.9a.25.25,0,0,0,.354,0l3.9-3.9A1,1,0,1,1,17.49,7.924l-3.9,3.9a.249.249,0,0,0,0,.353Z" />
    </G>
  ),
  navigationCircleRight: (
    <G>
      <Path d="M12,24A12,12,0,1,0,0,12,12.013,12.013,0,0,0,12,24Zm0-2A10,10,0,1,1,22,12,10.012,10.012,0,0,1,12,22Z" />
      <Path d="M12.115,15.616l1.939-1.94a.25.25,0,0,0-.177-.426H6a1.25,1.25,0,0,1,0-2.5h7.879a.25.25,0,0,0,.177-.427l-1.939-1.94a1.249,1.249,0,0,1,1.767-1.767l4.5,4.5a1.249,1.249,0,0,1,0,1.767l-4.5,4.5a1.249,1.249,0,0,1-1.767-1.767Z" />
    </G>
  ),
  statsGraphCircle: (
    <G>
      <Path d="M19.354,14A3.08,3.08,0,0,1,16.5,12.433a.248.248,0,0,0-.444.062l-1.576,5.014a1.538,1.538,0,0,1-2.9-.055L9.256,8.8a.25.25,0,0,0-.485.008,14.607,14.607,0,0,1-1.2,3.754A2.809,2.809,0,0,1,4.874,14H.168a12,12,0,0,0,23.664,0Z" />
      <Path d="M4.874,12c.935,0,1.012,0,1.913-3.565.206-.813.448-1.771.755-2.895A1.479,1.479,0,0,1,9,4.5H9a1.476,1.476,0,0,1,1.454,1.047l2.4,8.928a.249.249,0,0,0,.479.01L14.679,10.2a1.479,1.479,0,0,1,1.348-.989,1.521,1.521,0,0,1,1.443.773c.1.194.2.383.285.565.581,1.171.75,1.448,1.6,1.448H24A12,12,0,0,0,0,12Z" />
    </G>
  ),
  circleAlternate: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,21.5A9.5,9.5,0,1,1,21.5,12,9.511,9.511,0,0,1,12,21.5Z" />
    </G>
  ),
  circle: (
    <G>
      <Circle cx="12" cy="12" r="12" />
    </G>
  ),
  circleHelp: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,19a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,12,19Zm1.6-6.08a1,1,0,0,0-.6.917,1,1,0,1,1-2,0,3,3,0,0,1,1.8-2.75A2,2,0,1,0,10,9.255a1,1,0,1,1-2,0,4,4,0,1,1,5.6,3.666Z" />
    </G>
  ),
  smartWatchCircleGraph: (
    <G>
      <Path d="M15.94,12.886l-.519-.866a.25.25,0,0,0-.446.033l-1.216,2.956a1.249,1.249,0,0,1-2.289-.016L9.606,9.613a.249.249,0,0,0-.452-.043L7.232,12.877a.752.752,0,0,1-.649.373h-2.7a.249.249,0,0,0-.245.295,8.5,8.5,0,0,0,16.718,0,.249.249,0,0,0-.053-.205.251.251,0,0,0-.193-.09h-3.53A.751.751,0,0,1,15.94,12.886Z" />
      <Path d="M8.423,7.845A1.267,1.267,0,0,1,9.6,7.255a1.25,1.25,0,0,1,1.035.753l1.788,5.161a.25.25,0,0,0,.467.013l1.092-2.653A1.249,1.249,0,0,1,16.2,10.4l.739,1.232a.25.25,0,0,0,.215.122h3.085a.25.25,0,0,0,.249-.265,8.5,8.5,0,0,0-16.968,0,.25.25,0,0,0,.249.265H6.008a.251.251,0,0,0,.216-.125Z" />
      <Path d="M7.379,3.051a.125.125,0,0,0,.135.014,9.98,9.98,0,0,1,8.972,0,.125.125,0,0,0,.177-.144l-.68-2.55A.5.5,0,0,0,15.5,0h-7a.5.5,0,0,0-.483.371l-.68,2.551A.125.125,0,0,0,7.379,3.051Z" />
      <Path d="M16.621,20.949a.125.125,0,0,0-.135-.015,9.972,9.972,0,0,1-8.972,0,.125.125,0,0,0-.177.144l.68,2.551A.5.5,0,0,0,8.5,24h7a.5.5,0,0,0,.483-.371l.68-2.551A.125.125,0,0,0,16.621,20.949Z" />
    </G>
  ),
  likeCircle: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm6.949,11.213,0,.007-1.125,3.755,0,.009c-.457,1.476-1.239,2.482-2.792,2.482-3.706,0-3.495.427-7.824-1.761-.19-.1-.378-.191-.567-.288a.252.252,0,0,1-.136-.223V10.607a.25.25,0,0,1,.25-.25H8.656a1.181,1.181,0,0,0,.964-.5L12.5,5.426a1.014,1.014,0,0,1,1.611-.054,1,1,0,0,1,.192.888l-.52,1.963a1.169,1.169,0,0,0,.206,1.016,1.183,1.183,0,0,0,.934.457H17.82a1.176,1.176,0,0,1,1.129,1.517Z" />
    </G>
  ),
  loveItCircle: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm5.113,12.666-4.932,5.145a.25.25,0,0,1-.361,0L6.887,12.665a3.026,3.026,0,1,1,4.279-4.279l.658.659A.254.254,0,0,0,12,9.119a.249.249,0,0,0,.176-.074l.658-.658a3.025,3.025,0,1,1,4.278,4.279Z" />
    </G>
  ),
  browserDotCom: (
    <G>
      <Circle cx="4.55" cy="15.5" r="1" />
      <Path d="M9.55,16.75a.75.75,0,0,0,0-1.5A1.25,1.25,0,0,1,8.3,14V13a1.251,1.251,0,0,1,1.25-1.25.75.75,0,0,0,0-1.5A2.753,2.753,0,0,0,6.8,13v1A2.752,2.752,0,0,0,9.55,16.75Z" />
      <Path d="M13.05,16.75A1.752,1.752,0,0,0,14.8,15V12a1.75,1.75,0,0,0-3.5,0v3A1.752,1.752,0,0,0,13.05,16.75ZM12.8,12a.25.25,0,0,1,.5,0v3c0,.275-.5.275-.5,0Z" />
      <Path d="M16.55,16.75A.75.75,0,0,0,17.3,16V13.915a.058.058,0,0,1,.042-.055.057.057,0,0,1,.064.026.781.781,0,0,0,1.287,0,.058.058,0,0,1,.065-.026.058.058,0,0,1,.042.055V16a.75.75,0,0,0,1.5,0V11a.751.751,0,0,0-1.394-.386l-.642,1.071a.249.249,0,0,1-.214.121.252.252,0,0,1-.215-.121l-.642-1.071A.75.75,0,0,0,15.8,11v5A.75.75,0,0,0,16.55,16.75Z" />
      <Path d="M24,4.75a3,3,0,0,0-3-3H3a3,3,0,0,0-3,3v14.5a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3Zm-14.346-1a.966.966,0,0,1,1.692,0,.969.969,0,0,1,.154.5.969.969,0,0,1-.154.5.966.966,0,0,1-1.692,0,.969.969,0,0,1-.154-.5A.969.969,0,0,1,9.654,3.75Zm-3.5,0a.966.966,0,0,1,1.692,0A.969.969,0,0,1,8,4.25a.969.969,0,0,1-.154.5.966.966,0,0,1-1.692,0A.969.969,0,0,1,6,4.25.969.969,0,0,1,6.154,3.75Zm-3.562.092A1,1,0,0,1,3.5,3.25a.985.985,0,0,1,.846.5.969.969,0,0,1,.154.5.969.969,0,0,1-.154.5.966.966,0,0,1-1.692,0,.969.969,0,0,1-.154-.5A.979.979,0,0,1,2.592,3.842ZM22,19.25a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1V7a.25.25,0,0,1,.25-.25h19.5A.25.25,0,0,1,22,7Z" />
    </G>
  ),
  envelope: (
    <G>
      <Path d="M4,7H1A1,1,0,0,0,1,9H4A1,1,0,0,0,4,7Z" />
      <Path d="M3,11H1a1,1,0,0,0,0,2H3a1,1,0,0,0,0-2Z" />
      <Path d="M2.247,15H1a1,1,0,0,0,0,2H2.247a1,1,0,0,0,0-2Z" />
      <Path d="M23.934,7.375a.145.145,0,0,0-.152.029l-8.327,7.308a2.363,2.363,0,0,1-1.547.6,1.743,1.743,0,0,1-1.362-.6L6.416,7.4a.123.123,0,0,0-.143-.029.169.169,0,0,0-.1.125l-1.43,9A1.247,1.247,0,0,0,6,18H20.967a1.8,1.8,0,0,0,1.718-1.5L24,7.5A.115.115,0,0,0,23.934,7.375Z" />
      <Path d="M13.461,13.917a.931.931,0,0,0,1.322,0l8.275-7.264A.421.421,0,0,0,23.2,6.27c-.053-.288-.377-.27-.474-.27H7.894a.563.563,0,0,0-.556.27.355.355,0,0,0,.029.383Z" />
    </G>
  ),
  astronomyMoon: (
    <G>
      <Path d="M12.167,22.174A12.236,12.236,0,0,1,7,12,12.232,12.232,0,0,1,12.17,1.826,1.007,1.007,0,0,0,12.556.688,1.018,1.018,0,0,0,11.57,0a12.007,12.007,0,0,0,0,24H11.6a1,1,0,0,0,.566-1.826Z" />
      <Path d="M22.51,18c-2.4-.05-3.517-1.161-3.51-3.5h0a.536.536,0,0,0-.5-.5.5.5,0,0,0-.5.5c-.009,2.356-1.124,3.47-3.507,3.5a.5.5,0,0,0,.007,1h.006C16.9,19,17.979,20.081,18,22.5a.5.5,0,0,0,.49.5h.01a.5.5,0,0,0,.5-.475c.12-2.4,1.224-3.525,3.473-3.525a.261.261,0,0,0,.028,0,.5.5,0,0,0,.01-1Z" />
      <Path d="M15.983,11H16a.5.5,0,0,0,.011-1C14.615,9.971,14,9.354,14,8a.519.519,0,0,0-.5-.5A.5.5,0,0,0,13,8h0C13,9.363,12.376,9.98,10.993,10A.5.5,0,0,0,11,11h.006c1.385,0,1.982.6,1.994,2a.5.5,0,0,0,.49.5h.01a.5.5,0,0,0,.5-.475C14.069,11.625,14.681,11,15.983,11Z" />
      <Path d="M23.51,4C21.769,3.964,21,3.194,21,1.5a.5.5,0,0,0-.5-.5h0a.5.5,0,0,0-.5.5c-.006,1.708-.78,2.479-2.506,2.5A.5.5,0,0,0,17.5,5h.006c1.71,0,2.479.772,2.494,2.5a.5.5,0,0,0,.49.5h.01a.5.5,0,0,0,.5-.476C21.086,5.779,21.851,5,23.48,5h.02a.5.5,0,0,0,.01-1Z" />
    </G>
  ),
  moonIcon: (
    <G>
      <Path d="M19.687,14.934c-4.658,0.587-8.909-2.714-9.495-7.371C10.147,7.21,10.125,6.855,10.125,6.5c0-0.733,0.094-1.462,0.28-2.171 c0.141-0.534-0.178-1.081-0.712-1.222C9.569,3.075,9.441,3.066,9.314,3.082c-5.754,0.725-9.83,5.977-9.105,11.73 s5.977,9.83,11.73,9.105c4.248-0.535,7.745-3.596,8.839-7.735c0.141-0.534-0.178-1.081-0.712-1.222 c-0.123-0.033-0.252-0.041-0.379-0.025V14.934z M10.625,22c-4.694,0.001-8.501-3.804-8.501-8.499 C2.123,9.885,4.411,6.665,7.825,5.474c0.13-0.046,0.272,0.021,0.318,0.151C8.155,5.658,8.16,5.693,8.157,5.728 C8.138,5.985,8.129,6.243,8.129,6.5C8.136,12.052,12.458,16.642,18,16.982c0.137,0.008,0.242,0.125,0.235,0.262 c-0.002,0.035-0.011,0.069-0.027,0.1C16.758,20.199,13.828,21.999,10.625,22z M23.445,10.505l-0.264-0.038 c-0.659-0.097-1.176-0.614-1.273-1.273L21.87,8.929c-0.039-0.273-0.292-0.463-0.566-0.424c-0.22,0.031-0.393,0.204-0.424,0.424 l-0.038,0.265c-0.097,0.659-0.614,1.176-1.273,1.273l-0.264,0.038c-0.273,0.039-0.463,0.292-0.424,0.566 c0.031,0.22,0.204,0.393,0.424,0.424l0.264,0.038c0.659,0.097,1.176,0.614,1.273,1.273l0.038,0.265 c0.039,0.273,0.292,0.463,0.566,0.424c0.22-0.031,0.393-0.204,0.424-0.424l0.038-0.265c0.097-0.659,0.614-1.176,1.273-1.273 l0.264-0.038c0.273-0.039,0.463-0.292,0.424-0.566C23.838,10.709,23.665,10.536,23.445,10.505z M13.305,4.5l0.464,0.066 c1.317,0.193,2.352,1.228,2.544,2.546l0.067,0.463c0.039,0.273,0.292,0.463,0.566,0.424c0.22-0.031,0.393-0.204,0.424-0.424 l0.067-0.464c0.193-1.317,1.227-2.352,2.544-2.545L20.445,4.5c0.273-0.039,0.463-0.292,0.424-0.566 c-0.031-0.22-0.204-0.393-0.424-0.424l-0.464-0.066c-1.319-0.194-2.354-1.231-2.544-2.551L17.37,0.43 c-0.039-0.273-0.292-0.463-0.566-0.424c-0.22,0.031-0.393,0.204-0.424,0.424l-0.067,0.464c-0.193,1.317-1.227,2.352-2.544,2.545 l-0.464,0.066c-0.273,0.039-0.463,0.292-0.424,0.566c0.031,0.22,0.204,0.393,0.424,0.424L13.305,4.5z" />
    </G>
  ),
  powerButton: (
    <G>
      <Path d="M10.5,10.915a1.5,1.5,0,0,0,3,0V1.5a1.5,1.5,0,1,0-3,0Z" />
      <Path d="M1.2,11.533a10.917,10.917,0,0,0,18.52,9.272A10.825,10.825,0,0,0,22.8,11.527,11.021,11.021,0,0,0,17.067,3.4,1.5,1.5,0,1,0,15.63,6.03a8.048,8.048,0,0,1,4.2,5.925A7.914,7.914,0,0,1,6.4,18.684a7.854,7.854,0,0,1-2.237-6.726A8.042,8.042,0,0,1,8.36,6.036,1.5,1.5,0,1,0,6.919,3.405,11.015,11.015,0,0,0,1.2,11.533Z" />
    </G>
  ),
  syncCloud: (
    <G>
      <Path d="M24,11.378a5.765,5.765,0,0,0-5.216-5.952.249.249,0,0,1-.191-.12A7.684,7.684,0,0,0,4.493,7.6a.25.25,0,0,1-.227.2A4.644,4.644,0,0,0,.624,10.04,4.467,4.467,0,0,0,0,12.488a4.293,4.293,0,0,0,1.235,3.1,4.612,4.612,0,0,0,1.78,1.062.963.963,0,0,0,1.243-.86l0-.026A.986.986,0,0,0,3.6,14.731a2.58,2.58,0,0,1-.96-.572A2.374,2.374,0,0,1,2,12.374,2.588,2.588,0,0,1,4.586,9.786a2.626,2.626,0,0,1,.535.055,1,1,0,0,0,1.2-.963c.085-5.736,8.293-7.373,10.818-2.045a.974.974,0,0,0,.941.57,3.737,3.737,0,0,1,3,1.309,3.888,3.888,0,0,1,.9,2.812,3.426,3.426,0,0,1-1.473,2.667.973.973,0,0,0-.4.964l.01.059a.968.968,0,0,0,1.525.608A5.4,5.4,0,0,0,24,11.378Z" />
      <Path d="M6.014,21.464l.97-.97a.25.25,0,0,1,.358,0,6.086,6.086,0,0,0,10.21-2.2,1,1,0,0,0-1.893-.648,4.091,4.091,0,0,1-6.918,1.42.25.25,0,0,1,.009-.345l1.721-1.721a.5.5,0,0,0-.353-.854H5.661a.5.5,0,0,0-.5.5V21.11a.5.5,0,0,0,.308.462.47.47,0,0,0,.14.014A.485.485,0,0,0,6.014,21.464Z" />
      <Path d="M16.281,11.337a.25.25,0,0,1-.357,0,6.1,6.1,0,0,0-10.2,2.226,1,1,0,0,0,1.893.649,4.091,4.091,0,0,1,6.9-1.446.251.251,0,0,1-.006.347l-1.66,1.659a.5.5,0,0,0,.354.854h4.457a.5.5,0,0,0,.5-.5V10.665a.5.5,0,0,0-.854-.354Z" />
    </G>
  ),
  trophyStar: (
    <G>
      <Path d="M22,3H20.237l.2-1.35A1.5,1.5,0,0,0,18.947,0H5.053A1.5,1.5,0,0,0,3.94.494a1.528,1.528,0,0,0-.374,1.2l.2,1.3H2A2,2,0,0,0,0,5V8a5.019,5.019,0,0,0,2.518,4.342,1,1,0,0,0,.994-1.737A3.009,3.009,0,0,1,2,8V5H4.062l.632,4.209C4.868,10.367,6.352,15.5,12,15.5s7.131-5.131,7.306-6.291L19.937,5H22V8a3.009,3.009,0,0,1-1.512,2.605,1,1,0,0,0,.994,1.737A5.019,5.019,0,0,0,24,8V5A2,2,0,0,0,22,3Zm-6.922,7.274a.524.524,0,0,1-.746.656l-2.2-1.239a.251.251,0,0,0-.246,0l-2.2,1.239a.524.524,0,0,1-.746-.656l.893-2.051a.25.25,0,0,0-.053-.278L8.164,6.357A.489.489,0,0,1,8.508,5.5h1.841a.248.248,0,0,0,.226-.145l.962-2.07a.53.53,0,0,1,.942,0l.961,2.07a.25.25,0,0,0,.227.145h1.84a.489.489,0,0,1,.345.855L14.239,7.945a.249.249,0,0,0-.054.278Z" />
      <Path d="M10.784,16.912a.25.25,0,0,0-.2.06.247.247,0,0,0-.086.188v2.433C7.142,20.013,5,21.779,5,23a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1c0-1.221-2.142-2.987-5.5-3.407V17.16a.249.249,0,0,0-.086-.188.254.254,0,0,0-.2-.06,8.445,8.445,0,0,1-2.432,0Z" />
    </G>
  ),
  taskListEdit: (
    <G>
      <Path d="M17,21a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1V3A1,1,0,0,1,3,2H4.75a.25.25,0,0,1,.25.25V3.5A1.5,1.5,0,0,0,6.5,5h6A1.5,1.5,0,0,0,14,3.5V2.249A.25.25,0,0,1,14.25,2H16a1,1,0,0,1,1,1V8.314a.25.25,0,0,0,.427.177l1.5-1.5A.249.249,0,0,0,19,6.814V3a3,3,0,0,0-3-3H3A3,3,0,0,0,0,3V21a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V15.764a.25.25,0,0,0-.427-.177l-1.5,1.5a.249.249,0,0,0-.073.177Z" />
      <Path d="M8.469,6.663a.752.752,0,0,0-1.055.118l-1.3,1.627a.248.248,0,0,1-.181.094.251.251,0,0,1-.191-.073l-.71-.71A.75.75,0,1,0,3.97,8.78l1.5,1.5a.759.759,0,0,0,1.116-.061h0l2-2.5A.751.751,0,0,0,8.469,6.663Z" />
      <Path d="M8.469,12.163a.752.752,0,0,0-1.055.118l-1.3,1.627A.248.248,0,0,1,5.931,14a.251.251,0,0,1-.191-.073l-.71-.71A.75.75,0,1,0,3.97,14.28l1.5,1.5a.759.759,0,0,0,1.116-.061h0l2-2.5A.751.751,0,0,0,8.469,12.163Z" />
      <Path d="M14.25,8.5h-3.5a.75.75,0,0,0,0,1.5h3.5a.75.75,0,0,0,0-1.5Z" />
      <Path d="M23.586,8.453a1.414,1.414,0,1,0-2-2L11.573,16.466a.244.244,0,0,0-.06.1l-.665,2a.5.5,0,0,0,.632.632l2-.665a.244.244,0,0,0,.1-.06Z" />
    </G>
  ),
  targetCenter: (
    <G>
      <Path d="M22.962,3.808A.5.5,0,0,0,22.5,3.5H19.75a.249.249,0,0,1-.25-.25V.5a.5.5,0,0,0-.853-.354L16.233,2.56A2.484,2.484,0,0,0,15.5,4.328V6.012a.25.25,0,0,1-.117.212.49.49,0,0,0-.09.069l-5,5a1,1,0,1,0,1.414,1.414l5-5a.463.463,0,0,0,.07-.09.253.253,0,0,1,.212-.117h1.683a2.483,2.483,0,0,0,1.768-.733l2.414-2.414A.5.5,0,0,0,22.962,3.808Z" />
      <Path d="M11,8a1,1,0,0,0,0-2,6,6,0,1,0,6,6,1,1,0,0,0-2,0,4,4,0,1,1-4-4Z" />
      <Path d="M21,12a1,1,0,0,0-2,0,8,8,0,1,1-8-8,1,1,0,0,0,0-2A9.991,9.991,0,0,0,3.839,18.968a.25.25,0,0,1,.011.337L1.241,22.35a1,1,0,0,0,1.519,1.3l2.662-3.105a.249.249,0,0,1,.321-.05,9.94,9.94,0,0,0,10.514,0,.25.25,0,0,1,.322.05l2.662,3.105a1,1,0,0,0,1.519-1.3l-2.609-3.045a.249.249,0,0,1,.01-.336A9.962,9.962,0,0,0,21,12Z" />
    </G>
  ),
  circleCheck: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm6.927,8.2-6.845,9.289a1.011,1.011,0,0,1-1.43.188L5.764,13.769a1,1,0,1,1,1.25-1.562l4.076,3.261,6.227-8.451A1,1,0,1,1,18.927,8.2Z" />
    </G>
  ),
  checkMark: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M23.146,5.4l-2.792-2.8c-0.195-0.196-0.512-0.196-0.707-0.001c0,0-0.001,0.001-0.001,0.001L7.854,14.4 c-0.195,0.196-0.512,0.196-0.707,0.001c0,0-0.001-0.001-0.001-0.001l-2.792-2.8c-0.195-0.196-0.512-0.196-0.707-0.001 c0,0-0.001,0.001-0.001,0.001l-2.792,2.8c-0.195,0.195-0.195,0.512,0,0.707L7.146,21.4c0.195,0.196,0.512,0.196,0.707,0.001 c0,0,0.001-0.001,0.001-0.001L23.146,6.1C23.337,5.906,23.337,5.594,23.146,5.4z" />
    </G>
  ),
  circleUncheck: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,21.5A9.5,9.5,0,1,1,21.5,12,9.511,9.511,0,0,1,12,21.5Z" />
    </G>
  ),
  emailUnread: (
    <G>
      <Path d="M23.888,5.832a.182.182,0,0,0-.2.039l-9.747,9.745a2.75,2.75,0,0,1-3.888,0L.31,5.871a.18.18,0,0,0-.2-.039A.182.182,0,0,0,0,6V18a2,2,0,0,0,2,2H22a2,2,0,0,0,2-2V6A.181.181,0,0,0,23.888,5.832Z" />
      <Path d="M11.115,14.556a1.252,1.252,0,0,0,1.768,0L22.569,4.87a.5.5,0,0,0,.121-.511C22.58,4.03,22.274,4,22,4H2c-.275,0-.583.03-.691.359a.5.5,0,0,0,.121.511Z" />
    </G>
  ),
  singleManCircle: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22a9.958,9.958,0,0,1-6.554-2.456.5.5,0,0,1,.126-.834c.9-.4,1.947-.779,2.979-1.152.376-.137.751-.273,1.118-.409a.251.251,0,0,0,.163-.235V15.175a.249.249,0,0,0-.119-.212,3.074,3.074,0,0,1-1.3-2.613.25.25,0,0,0-.12-.2,1.253,1.253,0,0,1-.483-1.108,1.316,1.316,0,0,1,.41-1.056A.249.249,0,0,0,8.3,9.723c-.253-.909-.6-2.274.011-2.937a1.178,1.178,0,0,1,.965-.34.249.249,0,0,0,.228-.125c.5-.872,1.908-1.266,3.207-1.266,1.467,0,3.071.5,3.351,1.624a5.853,5.853,0,0,1-.36,3.045.25.25,0,0,0,.081.27,1.328,1.328,0,0,1,.4,1.049A1.252,1.252,0,0,1,15.7,12.15a.249.249,0,0,0-.121.2,3.072,3.072,0,0,1-1.305,2.614.249.249,0,0,0-.119.212v1.739a.248.248,0,0,0,.164.234c.407.151.812.3,1.209.441,1.078.39,2.071.749,2.9,1.113a.5.5,0,0,1,.128.835A9.958,9.958,0,0,1,12,22Z" />
    </G>
  ),
  dialPad: (
    <G>
      <Path d="M3.316,0A3.316,3.316,0,1,0,6.631,3.315,3.319,3.319,0,0,0,3.316,0Zm0,4.632A1.316,1.316,0,1,1,4.631,3.315,1.318,1.318,0,0,1,3.316,4.632Z" />
      <Path d="M11.964,0A3.316,3.316,0,1,0,15.28,3.315,3.319,3.319,0,0,0,11.964,0Zm0,4.632A1.316,1.316,0,1,1,13.28,3.315,1.319,1.319,0,0,1,11.964,4.632Z" />
      <Path d="M20.684,6.632a3.316,3.316,0,1,0-3.315-3.317A3.32,3.32,0,0,0,20.684,6.632Zm0-4.632a1.316,1.316,0,1,1-1.315,1.315A1.317,1.317,0,0,1,20.684,2Z" />
      <Path d="M3.316,8.685A3.315,3.315,0,1,0,6.631,12,3.319,3.319,0,0,0,3.316,8.685Zm0,4.63A1.315,1.315,0,1,1,4.631,12,1.316,1.316,0,0,1,3.316,13.315Z" />
      <Path d="M11.964,8.685A3.315,3.315,0,1,0,15.28,12,3.319,3.319,0,0,0,11.964,8.685Zm0,4.63A1.315,1.315,0,1,1,13.28,12,1.317,1.317,0,0,1,11.964,13.315Z" />
      <Path d="M20.684,8.685A3.315,3.315,0,1,0,24,12,3.319,3.319,0,0,0,20.684,8.685Zm0,4.63A1.315,1.315,0,1,1,22,12,1.316,1.316,0,0,1,20.684,13.315Z" />
      <Path d="M11.964,17.368a3.316,3.316,0,1,0,3.316,3.317A3.321,3.321,0,0,0,11.964,17.368Zm0,4.632a1.316,1.316,0,1,1,1.316-1.315A1.317,1.317,0,0,1,11.964,22Z" />
    </G>
  ),
  bedDoubleBold: (
    <G>
      <Path d="M22.5,11.75H1.5A1.5,1.5,0,0,0,0,13.25v4A1.5,1.5,0,0,0,1.125,18.7a.5.5,0,0,1,.375.483V20.25a1,1,0,0,0,2,0v-1a.5.5,0,0,1,.5-.5H20a.5.5,0,0,1,.5.5v1a1,1,0,0,0,2,0V19.186a.5.5,0,0,1,.375-.483A1.5,1.5,0,0,0,24,17.25v-4A1.5,1.5,0,0,0,22.5,11.75Z" />
      <Path d="M2.5,10.25a.5.5,0,0,0,.5.5H21a.5.5,0,0,0,.5-.5v-5A2.5,2.5,0,0,0,19,2.75H5a2.5,2.5,0,0,0-2.5,2.5Zm4-3h2A2.5,2.5,0,0,1,10.666,8.5a.5.5,0,0,1-.433.75H4.767a.5.5,0,0,1-.433-.75A2.5,2.5,0,0,1,6.5,7.25Zm9,0h2A2.5,2.5,0,0,1,19.666,8.5a.5.5,0,0,1-.433.75H13.767a.5.5,0,0,1-.433-.75A2.5,2.5,0,0,1,15.5,7.25Z" />
    </G>
  ),
  moodMoody: (
    <G>
      <Path d="M17.832,15.757a7.721,7.721,0,0,1,1.761-4.078,1.929,1.929,0,0,1,2.426-.609.249.249,0,0,0,.255-.019.253.253,0,0,0,.1-.233,10.761,10.761,0,0,0-9.547-9.459V1a1,1,0,0,0-2,0v.337a10.74,10.74,0,0,0,0,21.409V23a1,1,0,0,0,2,0v-.276a10.731,10.731,0,0,0,6.959-3.616.252.252,0,0,0-.072-.387A3.464,3.464,0,0,1,17.832,15.757Zm.93-5.335a2.555,2.555,0,0,1-2.06,1.03,2.59,2.59,0,0,1-2.061-1.03.75.75,0,1,1,1.2-.9,1.109,1.109,0,0,0,1.723,0,.75.75,0,1,1,1.2.9ZM2.967,12.042a8.754,8.754,0,0,1,7.581-8.665.25.25,0,0,1,.283.248V13.681a.252.252,0,0,0,.269.25A7.007,7.007,0,0,1,16.6,15.988a.75.75,0,0,1-1.06,1.061,5.538,5.538,0,0,0-4.478-1.61.25.25,0,0,0-.226.249v.661a5.324,5.324,0,0,1-3.013-1.512A1,1,0,0,0,6.4,16.251a7.359,7.359,0,0,0,4.211,2.082.249.249,0,0,1,.216.248v1.877a.25.25,0,0,1-.283.248A8.754,8.754,0,0,1,2.967,12.042Z" />
      <Path d="M9.222,10.573a1,1,0,1,0-1.6-1.2.851.851,0,0,1-1.323,0,1,1,0,0,0-1.6,1.2,2.828,2.828,0,0,0,4.522,0Z" />
      <Path d="M21.163,17.627a1.992,1.992,0,0,0,1.87-1.87,7.226,7.226,0,0,0-1.489-3.23.468.468,0,0,0-.762,0,7.226,7.226,0,0,0-1.489,3.23A1.992,1.992,0,0,0,21.163,17.627Z" />
    </G>
  ),
  smileyDisappointed: (
    <G>
      <Path d="M5.947,9.4l4-2a1,1,0,1,0-.894-1.79l-4,2A1,1,0,0,0,5.5,9.5.989.989,0,0,0,5.947,9.4Z" />
      <Path d="M18.947,7.605l-4-2a1,1,0,1,0-.894,1.79l4,2A.989.989,0,0,0,18.5,9.5a1,1,0,0,0,.448-1.895Z" />
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" />
      <Path d="M10.416,11.756a1,1,0,0,0-1.832-.8.909.909,0,0,1-1.668,0,1,1,0,0,0-1.832.8,2.91,2.91,0,0,0,5.332,0Z" />
      <Path d="M17.9,10.438a1,1,0,0,0-1.316.515.909.909,0,0,1-1.668,0,1,1,0,0,0-1.832.8,2.91,2.91,0,0,0,5.332,0A1,1,0,0,0,17.9,10.438Z" />
      <Path d="M12,15a6.053,6.053,0,0,0-4.789,2.386,1,1,0,0,0,1.578,1.228,4,4,0,0,1,6.422,0,1,1,0,0,0,1.578-1.228A6.053,6.053,0,0,0,12,15Z" />
    </G>
  ),
  smileyEyesOnlyBold: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm0,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22Z" />
      <Circle cx="8" cy="9" r="2" />
      <Circle cx="16" cy="9" r="2" />
    </G>
  ),

  // Play and stop buttons
  play: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm4.828,12.894L9.447,16.584h0A1,1,0,0,1,8,15.69V8.308a1,1,0,0,1,1.446-.895L16.829,11.1A1,1,0,0,1,16.828,12.893Z" />
    </G>
  ),
  stop: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0ZM12,21.55A9.551,9.551,0,1,1,21.551,12,9.562,9.562,0,0,1,12,21.55Z" />
      <Rect
        x="8.082"
        y="8.081"
        width="7.837"
        height="7.837"
        rx="0.98"
        ry="0.98"
      />
    </G>
  ),
  record: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.014,12.014,0,0,0,12,0Zm0,21.421A9.421,9.421,0,1,1,21.421,12,9.432,9.432,0,0,1,12,21.417Z" />
      <Circle cx="12" cy="11.996" r="4.381" />
    </G>
  ),
  pause: (
    <G>
      <Path d="M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0ZM12,21.55A9.551,9.551,0,1,1,21.551,12,9.562,9.562,0,0,1,12,21.55Z" />
      <Rect
        x="7.851"
        y="7.142"
        width="3.401"
        height="10.776"
        rx="0.98"
        ry="0.98"
      />
      <Rect
        x="12.721"
        y="7.101"
        width="3.456"
        height="10.776"
        rx="0.98"
        ry="0.98"
      />
    </G>
  ),
  charging: (
    <G>
      <Path d="M22.206,4.536a1,1,0,0,0-1.414,0L18.886,6.442a.25.25,0,0,1-.354,0L16.057,3.967a.252.252,0,0,1,0-.354l1.906-1.9A1,1,0,1,0,16.549.294L14.643,2.2a.249.249,0,0,1-.353,0l-.463-.462a1.5,1.5,0,0,0-2.121,0L8.525,4.919A5.726,5.726,0,0,0,6.878,9.287a6.592,6.592,0,0,0,.711,2.688.251.251,0,0,1-.046.289L5.7,14.112a.5.5,0,0,0,0,.707l.221.222a.25.25,0,0,1,0,.355L2.379,18.843l0,0a3,3,0,0,0,0,4.241,3.074,3.074,0,0,0,4.242,0L9.8,19.905a.5.5,0,1,1,.708.707L8.827,22.294a1,1,0,0,0,1.414,1.414l1.684-1.683a2.5,2.5,0,0,0-3.537-3.534L5.206,21.673a1.025,1.025,0,0,1-1.414,0,1,1,0,0,1-.01-1.4l0,0,3.549-3.46a.251.251,0,0,1,.351,0l.132.132a.5.5,0,0,0,.707,0L10.369,15.1a.249.249,0,0,1,.289-.046,6.581,6.581,0,0,0,2.964.718,5.739,5.739,0,0,0,4.094-1.656L20.9,10.929a1.5,1.5,0,0,0,0-2.121l-.6-.6a.25.25,0,0,1,0-.354L22.206,5.95A1,1,0,0,0,22.206,4.536ZM13.827,8.808a2,2,0,0,1,0,2.828h0a2,2,0,1,1,0-2.828Z" />
    </G>
  ),
  circleAdd: (
    <G>
      <Path d="M12,23.75A11.75,11.75,0,1,0,.25,12,11.764,11.764,0,0,0,12,23.75Zm0-21A9.25,9.25,0,1,1,2.75,12,9.26,9.26,0,0,1,12,2.75Z" />
      <Path d="M6.273,13.25H10.5a.25.25,0,0,1,.25.25v4.227a1.25,1.25,0,0,0,2.5,0V13.5a.25.25,0,0,1,.25-.25h4.227a1.25,1.25,0,0,0,0-2.5H13.5a.25.25,0,0,1-.25-.25V6.272a1.25,1.25,0,1,0-2.5,0V10.5a.25.25,0,0,1-.25.25H6.273a1.25,1.25,0,0,0,0,2.5Z" />
    </G>
  ),
  circleSubtract: (
    <G>
      <Path d="M12,.25A11.75,11.75,0,1,0,23.75,12,11.763,11.763,0,0,0,12,.25Zm0,21A9.25,9.25,0,1,1,21.25,12,9.26,9.26,0,0,1,12,21.25Z" />
      <Path d="M6.273,10.75a1.25,1.25,0,0,0,0,2.5H17.727a1.25,1.25,0,0,0,0-2.5Z" />
    </G>
  ),
  checklist: (
    <G>
      <Path d="M21,0H3A3,3,0,0,0,0,3V21a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3V3A3,3,0,0,0,21,0Zm1,21a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1V3A1,1,0,0,1,3,2H21a1,1,0,0,1,1,1Z" />
      <Path d="M11.249,4.5a1.251,1.251,0,0,0-1.75.25L7.365,7.6l-.482-.481A1.25,1.25,0,0,0,5.116,8.883l1.5,1.5A1.262,1.262,0,0,0,8.5,10.249l3-4A1.25,1.25,0,0,0,11.249,4.5Z" />
      <Path d="M11.249,13.5a1.251,1.251,0,0,0-1.75.25L7.365,16.6l-.482-.481a1.25,1.25,0,1,0-1.767,1.768l1.5,1.5A1.265,1.265,0,0,0,8.5,19.249l3-4A1.25,1.25,0,0,0,11.249,13.5Z" />
      <Path d="M18.5,7.749H14a1.25,1.25,0,0,0,0,2.5h4.5a1.25,1.25,0,0,0,0-2.5Z" />
      <Path d="M18.5,15.749H14a1.25,1.25,0,0,0,0,2.5h4.5a1.25,1.25,0,1,0,0-2.5Z" />
    </G>
  ),
  crown: (
    <G>
      <Path d="M3.5,18.726a2.283,2.283,0,0,0,.5,4.5H20a2.19,2.19,0,0,0,1.678-.723,2.291,2.291,0,0,0,.56-1.527A2.151,2.151,0,0,0,20.5,18.726Z" />
      <Path d="M20.424,17.726a.5.5,0,0,0,.479-.359l1.817-6.175a.751.751,0,0,0-1.218-.773L18.484,13.1a1.413,1.413,0,0,1-1.077.346.885.885,0,0,1-.637-.358c-.369-.527-.189-.889.874-1.753a1.243,1.243,0,0,0,.294-1.6L13.081,1.349a1.3,1.3,0,0,0-2.164,0L6.062,9.738a1.241,1.241,0,0,0,.292,1.6c1.063.866,1.243,1.227.875,1.754a.889.889,0,0,1-.638.358A1.416,1.416,0,0,1,5.515,13.1L2.5,10.417a.751.751,0,0,0-1.219.774L3.1,17.367a.5.5,0,0,0,.48.359ZM10.6,9.177l1-1.335a.5.5,0,0,1,.8,0h0l1,1.334a.507.507,0,0,1,0,.6l-1,1.335a.52.52,0,0,1-.8,0l-1-1.334A.507.507,0,0,1,10.6,9.177Z" />
    </G>
  ),
  listAdd: (
    <G>
      <Path d="M6,2.5H19.5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z" />
      <Path d="M6,8.5H19.5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z" />
      <Path d="M10,13.5a1,1,0,0,0-1-1H6a1,1,0,1,0,0,2H9A1,1,0,0,0,10,13.5Z" />
      <Path d="M2.5.5h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z" />
      <Path d="M2.5,6.5h-1a1,1,0,0,0,0,2h1a1,1,0,1,0,0-2Z" />
      <Path d="M2.5,12.5h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z" />
      <Path d="M17.5,11A6.5,6.5,0,1,0,24,17.5,6.508,6.508,0,0,0,17.5,11Zm.75,9a.75.75,0,1,1-1.5,0V18.5a.25.25,0,0,0-.25-.25H15a.75.75,0,0,1,0-1.5h1.5a.25.25,0,0,0,.25-.25V15a.75.75,0,1,1,1.5,0v1.5a.25.25,0,0,0,.25.25H20a.75.75,0,0,1,0,1.5H18.5a.25.25,0,0,0-.25.25Z" />
    </G>
  ),
  listRemove: (
    <G>
      <Path d="M6,2.5H19.5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z" />
      <Path d="M6,8.5H19.5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z" />
      <Path d="M10,13.5a1,1,0,0,0-1-1H6a1,1,0,1,0,0,2H9A1,1,0,0,0,10,13.5Z" />
      <Path d="M2.5.5h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z" />
      <Path d="M2.5,6.5h-1a1,1,0,0,0,0,2h1a1,1,0,1,0,0-2Z" />
      <Path d="M2.5,12.5h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z" />
      <Path d="M17.5,11A6.5,6.5,0,1,0,24,17.5,6.508,6.508,0,0,0,17.5,11Zm3.25,6.5a.75.75,0,0,1-.75.75H15a.75.75,0,0,1,0-1.5h5A.75.75,0,0,1,20.75,17.5Z" />
    </G>
  ),
  chat: (
    <G>
      <Path d="M14.5,10.5h4.25a.25.25,0,0,0,.25-.25V5.5A4.505,4.505,0,0,0,14.5,1H4.5A4.505,4.505,0,0,0,0,5.5v4A4.5,4.5,0,0,0,4.5,14H5v3.5a.5.5,0,0,0,.876.329l3.276-3.743A.247.247,0,0,1,9.34,14h1a.249.249,0,0,0,.246-.206A3.991,3.991,0,0,1,14.5,10.5Z" />
      <Path d="M24,14.5A2.5,2.5,0,0,0,21.5,12h-7A2.5,2.5,0,0,0,12,14.5v3A2.5,2.5,0,0,0,14.5,20h1.793l2.853,2.854A.5.5,0,0,0,20,22.5V20h1.5A2.5,2.5,0,0,0,24,17.5Z" />
    </G>
  ),
  multiUsers: (
    <G>
      <Path d="M12,24c10.7,0,11.851-2.072,11.851-2.963,0-.641,0-2.143-7.041-2.763a.987.987,0,0,0-.173,1.967,26.87,26.87,0,0,1,3.771.557.247.247,0,0,1,0,.481A38.972,38.972,0,0,1,12,22.025a38.961,38.961,0,0,1-8.406-.746.247.247,0,0,1,0-.481,26.713,26.713,0,0,1,3.731-.553.987.987,0,1,0-.174-1.967c-7,.622-7,2.12-7,2.759C.149,23.711,8.437,24,12,24Z" />
      <Path d="M13.273,6.63a.25.25,0,0,1-.017-.466,3.21,3.21,0,1,0-2.512,0,.25.25,0,0,1-.017.466A3.957,3.957,0,0,0,8.05,10.37v2.963a.493.493,0,0,0,.493.493h.882a.246.246,0,0,1,.246.227l.356,4.259a.493.493,0,0,0,.492.452h2.962a.493.493,0,0,0,.492-.452l.356-4.259a.246.246,0,0,1,.246-.227h.882a.493.493,0,0,0,.493-.493V10.37A3.957,3.957,0,0,0,13.273,6.63Z" />
      <Path d="M4.779,7.612a.251.251,0,0,1-.022-.462,2.716,2.716,0,1,0-2.3,0,.251.251,0,0,1-.021.462A3.463,3.463,0,0,0,.149,10.863v1.483a.493.493,0,0,0,.494.493h.819a.248.248,0,0,1,.245.22l.42,3.786a.5.5,0,0,0,.491.44H4.593a.494.494,0,0,0,.491-.439l.421-3.787a.247.247,0,0,1,.245-.22h.818a.493.493,0,0,0,.494-.493V10.862A3.46,3.46,0,0,0,4.779,7.612Z" />
      <Path d="M21.567,7.612a.251.251,0,0,1-.021-.462,2.716,2.716,0,1,0-2.3,0,.251.251,0,0,1-.021.462,3.461,3.461,0,0,0-2.284,3.251v1.483a.493.493,0,0,0,.494.493h.818a.248.248,0,0,1,.246.22l.42,3.786a.5.5,0,0,0,.491.44h1.975a.494.494,0,0,0,.491-.439l.421-3.787a.247.247,0,0,1,.245-.22h.818a.493.493,0,0,0,.494-.493V10.862A3.46,3.46,0,0,0,21.567,7.612Z" />
      <Path d="M12,24c10.7,0,11.851-2.072,11.851-2.963,0-.641,0-2.143-7.041-2.763a.987.987,0,0,0-.173,1.967,26.87,26.87,0,0,1,3.771.557.247.247,0,0,1,0,.481A38.972,38.972,0,0,1,12,22.025a38.961,38.961,0,0,1-8.406-.746.247.247,0,0,1,0-.481,26.713,26.713,0,0,1,3.731-.553.987.987,0,1,0-.174-1.967c-7,.622-7,2.12-7,2.759C.149,23.711,8.437,24,12,24Z" />
      <Path d="M13.273,6.63a.25.25,0,0,1-.017-.466,3.21,3.21,0,1,0-2.512,0,.25.25,0,0,1-.017.466A3.957,3.957,0,0,0,8.05,10.37v2.963a.493.493,0,0,0,.493.493h.882a.246.246,0,0,1,.246.227l.356,4.259a.493.493,0,0,0,.492.452h2.962a.493.493,0,0,0,.492-.452l.356-4.259a.246.246,0,0,1,.246-.227h.882a.493.493,0,0,0,.493-.493V10.37A3.957,3.957,0,0,0,13.273,6.63Z" />
      <Path d="M4.779,7.612a.251.251,0,0,1-.022-.462,2.716,2.716,0,1,0-2.3,0,.251.251,0,0,1-.021.462A3.463,3.463,0,0,0,.149,10.863v1.483a.493.493,0,0,0,.494.493h.819a.248.248,0,0,1,.245.22l.42,3.786a.5.5,0,0,0,.491.44H4.593a.494.494,0,0,0,.491-.439l.421-3.787a.247.247,0,0,1,.245-.22h.818a.493.493,0,0,0,.494-.493V10.862A3.46,3.46,0,0,0,4.779,7.612Z" />
      <Path d="M21.567,7.612a.251.251,0,0,1-.021-.462,2.716,2.716,0,1,0-2.3,0,.251.251,0,0,1-.021.462,3.461,3.461,0,0,0-2.284,3.251v1.483a.493.493,0,0,0,.494.493h.818a.248.248,0,0,1,.246.22l.42,3.786a.5.5,0,0,0,.491.44h1.975a.494.494,0,0,0,.491-.439l.421-3.787a.247.247,0,0,1,.245-.22h.818a.493.493,0,0,0,.494-.493V10.862A3.46,3.46,0,0,0,21.567,7.612Z" />
    </G>
  ),
  yoga: (
    <G>
      <Circle cx="12" cy="3" r="3" />
      <Path d="M19.768,18.527a1.5,1.5,0,0,0-1.914-.915l-3.7,1.306a.25.25,0,0,0,0,.471l2.135.754a2.481,2.481,0,0,1,.923.577.5.5,0,0,0,.518.116l1.12-.4A1.5,1.5,0,0,0,19.768,18.527Z" />
      <Path d="M15.458,24a1.485,1.485,0,0,1-.5-.086L5.117,20.44a1.5,1.5,0,0,1,1-2.828l9.843,3.474a1.5,1.5,0,0,1-.5,2.914Z" />
      <Path d="M11.352,18.391a2,2,0,0,0,1.326,0l2.595-.916a.334.334,0,0,0,.223-.314.273.273,0,0,0-.244-.272,2.5,2.5,0,0,1-.456-4.881l.379-.132a.5.5,0,0,0,.335-.471v-.48a.424.424,0,0,1,.424-.423,1.08,1.08,0,0,1,.311,2.115l-1.162.349a1.5,1.5,0,0,0,.862,2.873l1.162-.349A4.08,4.08,0,0,0,15.935,7.5H8.065a4.08,4.08,0,0,0-1.173,7.988l1.162.349a1.5,1.5,0,0,0,.862-2.873l-1.162-.349A1.08,1.08,0,0,1,8.065,10.5a.424.424,0,0,1,.424.423v.48a.5.5,0,0,0,.335.471l.379.132a2.5,2.5,0,0,1-.456,4.881.273.273,0,0,0-.244.272.334.334,0,0,0,.223.314Z" />
    </G>
  ),
  daySunrise: (
    <G>
      <Path d="M7.456,15.4l.59-.786a.251.251,0,0,0,0-.3,5,5,0,1,1,7.913-.014.251.251,0,0,0,0,.3l.6.8a2.284,2.284,0,0,1,.254.432.251.251,0,0,0,.19.145.248.248,0,0,0,.225-.081,7,7,0,1,0-10.446.018.25.25,0,0,0,.415-.066,2.255,2.255,0,0,1,.26-.446Z" />
      <Path d="M1.744,12.25h1.5a1,1,0,0,0,0-2h-1.5a1,1,0,0,0,0,2Z" />
      <Path d="M5.1,5.77A1,1,0,1,0,6.514,4.355L5.453,3.3A1,1,0,0,0,4.039,4.709Z" />
      <Path d="M11.994,3.5a1,1,0,0,0,1-1V1a1,1,0,0,0-2,0V2.5A1,1,0,0,0,11.994,3.5Z" />
      <Path d="M4.039,19.2a1,1,0,0,0,1.414,0l1.061-1.06A1,1,0,1,0,5.1,16.73L4.039,17.791A1,1,0,0,0,4.039,19.2Z" />
      <Path d="M19.744,11.25a1,1,0,0,0,1,1h1.5a1,1,0,0,0,0-2h-1.5A1,1,0,0,0,19.744,11.25Z" />
      <Path d="M18.182,6.063a1,1,0,0,0,.707-.293l1.06-1.061A1,1,0,1,0,18.535,3.3l-1.06,1.06a1,1,0,0,0,.707,1.708Z" />
      <Path d="M18.889,16.73a1,1,0,0,0-1.414,1.415l1.06,1.06a1,1,0,0,0,1.414-1.414Z" />
      <Path d="M23.994,23a1,1,0,0,0-1-1H1.006a1,1,0,0,0,0,2H22.994A1,1,0,0,0,23.994,23Z" />
      <Path d="M13.006,17.75a.25.25,0,0,1,.25-.25h1.5a.749.749,0,0,0,.6-1.2L12.6,12.631a.772.772,0,0,0-1.2,0L8.655,16.3h0a.75.75,0,0,0,.6,1.2h1.5a.25.25,0,0,1,.25.25V20a1,1,0,0,0,2,0Z" />
    </G>
  ),
  sun: (
    <G>
      <Path d="M12,4.645c-4.062,0-7.355,3.293-7.355,7.355S7.938,19.355,12,19.355s7.355-3.293,7.355-7.355l0,0 C19.351,7.94,16.06,4.649,12,4.645z M12,17.355c-2.957,0-5.355-2.398-5.355-5.355S9.043,6.645,12,6.645S17.355,9.043,17.355,12v0 C17.352,14.956,14.956,17.352,12,17.355z M12,3.467c0.552,0,1-0.448,1-1V1c0-0.552-0.448-1-1-1s-1,0.448-1,1v1.467 C11,3.019,11.448,3.467,12,3.467z M4.552,5.966c0.384,0.397,1.017,0.408,1.414,0.025c0.397-0.384,0.408-1.017,0.025-1.414 C5.983,4.568,5.974,4.56,5.966,4.552L4.929,3.515C4.532,3.131,3.899,3.142,3.515,3.54c-0.374,0.388-0.374,1.002,0,1.389 L4.552,5.966z M2.467,11H1c-0.552,0-1,0.448-1,1s0.448,1,1,1h1.467c0.552,0,1-0.448,1-1S3.019,11,2.467,11z M4.552,18.034 l-1.037,1.037c-0.397,0.384-0.408,1.017-0.025,1.414s1.017,0.408,1.414,0.025c0.008-0.008,0.017-0.016,0.025-0.025l1.037-1.037 c0.397-0.384,0.408-1.017,0.025-1.414c-0.384-0.397-1.017-0.408-1.414-0.025C4.568,18.017,4.56,18.026,4.552,18.034z M12,20.533 c-0.552,0-1,0.448-1,1V23c0,0.552,0.448,1,1,1s1-0.448,1-1v-1.467C13,20.981,12.552,20.533,12,20.533z M19.448,18.034 c-0.397-0.384-1.03-0.373-1.414,0.025c-0.374,0.388-0.374,1.002,0,1.389l1.037,1.037c0.397,0.384,1.03,0.373,1.414-0.025 c0.374-0.388,0.374-1.002,0-1.389L19.448,18.034z M23,11h-1.467c-0.552,0-1,0.448-1,1s0.448,1,1,1H23c0.552,0,1-0.448,1-1 S23.552,11,23,11z M18.741,6.259c0.265,0,0.52-0.105,0.707-0.293l1.037-1.037c0.384-0.397,0.373-1.03-0.025-1.414 c-0.388-0.374-1.002-0.374-1.389,0l-1.037,1.037c-0.39,0.391-0.39,1.024,0,1.414C18.222,6.154,18.476,6.259,18.741,6.259z" />
    </G>
  ),
  daySunset: (
    <G>
      <Path d="M7.865,14.478a.25.25,0,0,0,.049-.341,5,5,0,1,1,8.168-.011.249.249,0,0,0,.051.341,2.289,2.289,0,0,1,.792,1.183.25.25,0,0,0,.432.093,7,7,0,1,0-10.707.022.25.25,0,0,0,.432-.1,2.266,2.266,0,0,1,.783-1.191Z" />
      <Path d="M1.744,12.25h1.5a1,1,0,0,0,0-2h-1.5a1,1,0,0,0,0,2Z" />
      <Path d="M5.1,5.77A1,1,0,1,0,6.514,4.355L5.453,3.3A1,1,0,0,0,4.039,4.709Z" />
      <Path d="M11.994,3.5a1,1,0,0,0,1-1V1a1,1,0,0,0-2,0V2.5A1,1,0,0,0,11.994,3.5Z" />
      <Path d="M4.039,19.2a1,1,0,0,0,1.414,0l1.061-1.06A1,1,0,1,0,5.1,16.73L4.039,17.791A1,1,0,0,0,4.039,19.2Z" />
      <Path d="M19.744,11.25a1,1,0,0,0,1,1h1.5a1,1,0,0,0,0-2h-1.5A1,1,0,0,0,19.744,11.25Z" />
      <Path d="M18.182,6.063a1,1,0,0,0,.707-.293l1.06-1.061A1,1,0,1,0,18.535,3.3l-1.06,1.06a1,1,0,0,0,.707,1.708Z" />
      <Path d="M18.889,16.73a1,1,0,0,0-1.414,1.415l1.06,1.06a1,1,0,0,0,1.414-1.414Z" />
      <Path d="M11.408,20.369a.75.75,0,0,0,1.2,0l2.75-3.667a.749.749,0,0,0-.6-1.2h-1.5a.25.25,0,0,1-.25-.25V13a1,1,0,0,0-2,0v2.25a.25.25,0,0,1-.25.25h-1.5a.75.75,0,0,0-.6,1.2h0Z" />
      <Path d="M22.994,22H1.006a1,1,0,0,0,0,2H22.994a1,1,0,0,0,0-2Z" />
    </G>
  ),
  bedWindow: (
    <G>
      <Path d="M23.25,23.25v-3a1.5,1.5,0,0,0-1.5-1.5H.75v4.5" />
      <Path d="M0.75 21.75L23.25 21.75" />
      <Path d="M0.75 15.75H21.75V18.75H0.75z" />
      <Path d="M5.25,12.75h-3a1.5,1.5,0,0,0-1.5,1.5v1.5h6v-1.5A1.5,1.5,0,0,0,5.25,12.75Z" />
      <Path d="M0.75 16.5L0.75 9.75" />
      <Path d="M14.25 0.75H23.25V9.75H14.25z" />
      <Path d="M18.75 0.75L18.75 9.75" />
      <Path d="M14.25 5.25L23.25 5.25" />
    </G>
  ),
  tag: (
    <G>
      <Path d="M22.291,16.12a3,3,0,0,0,0-4.242l-11-11A2.978,2.978,0,0,0,9.169,0H2A2,2,0,0,0,0,2V9.17a2.978,2.978,0,0,0,.879,2.122l11,11a3,3,0,0,0,4.242,0Zm-1.414-1.414-6.172,6.172a1.025,1.025,0,0,1-1.414,0l-11-11A1,1,0,0,1,2,9.17V2.5A.5.5,0,0,1,2.5,2H9.169a1,1,0,0,1,.708.293l11,11a1,1,0,0,1,0,1.414Z" />
      <Path d="M4.498 5.999 A1.500 1.500 0 1 0 7.498 5.999 A1.500 1.500 0 1 0 4.498 5.999 Z" />
    </G>
  ),
  scale: (
    <G>
      <Path d="M24,10.356a1,1,0,0,0-.086-.388L20.827,3.022a.25.25,0,0,1,.136-.334l.654-.258A1,1,0,0,0,20.883.569L13.342,3.546A.25.25,0,0,1,13,3.314V2a1,1,0,0,0-2,0V4.3a.251.251,0,0,1-.158.233L1.883,8.069A1,1,0,0,0,2.25,10h.04a.25.25,0,0,1,.237.352L.087,15.843A1,1,0,0,0,0,16.231v.019a4.5,4.5,0,0,0,9,0,.745.745,0,0,0-.047-.26,1.007,1.007,0,0,0-.052-.145L5.842,8.936a.256.256,0,0,1,0-.2.251.251,0,0,1,.14-.137l4.679-1.847A.249.249,0,0,1,11,6.988V21.25a.25.25,0,0,1-.25.25H7.581a1,1,0,1,0,0,2h8.811a1,1,0,0,0,0-2H13.25a.25.25,0,0,1-.25-.25V6a.25.25,0,0,1,.158-.232L17.2,4.175a.249.249,0,0,1,.32.333L15.1,9.97a1.007,1.007,0,0,0-.052.145.745.745,0,0,0-.047.26,4.5,4.5,0,0,0,9,0ZM2.813,15.5a.251.251,0,0,1-.228-.352l1.684-3.792a.25.25,0,0,1,.457,0l1.68,3.792a.251.251,0,0,1-.228.352ZM17.822,9.625a.251.251,0,0,1-.228-.352l1.68-3.792a.25.25,0,0,1,.457,0l1.684,3.792a.251.251,0,0,1-.228.352Z" />
    </G>
  ),
  phoneTouch: (
    <G>
      <Path d="M6.251,19.5H2.489c-0.276,0-0.5-0.224-0.5-0.5V3.5c0-0.276,0.224-0.5,0.5-0.5h11c0.276,0,0.5,0.224,0.5,0.5v3.02 c0.001,0.084,0.043,0.162,0.113,0.209c0.535,0.352,1.023,0.77,1.452,1.245c0.093,0.102,0.251,0.11,0.353,0.017 c0.052-0.047,0.082-0.114,0.082-0.184V3c0-1.657-1.343-3-3-3h-10c-1.657,0-3,1.343-3,3v18c0,1.657,1.343,3,3,3h6.75 c0.138,0,0.25-0.112,0.25-0.25v-3c0-0.135-0.107-0.246-0.242-0.25C8.517,20.46,7.316,20.117,6.251,19.5z M8.788,18.881 c0.536,0.132,1.078-0.196,1.21-0.732c0.132-0.536-0.196-1.078-0.732-1.21c-0.026-0.006-0.051-0.012-0.077-0.016 C7.024,16.478,5.63,14.364,6.075,12.2c0.445-2.164,2.559-3.558,4.723-3.113c1.272,0.261,2.338,1.124,2.859,2.313 c0.205,0.513,0.787,0.762,1.3,0.556c0.513-0.205,0.762-0.787,0.556-1.3c-0.008-0.019-0.016-0.038-0.025-0.056 c-1.329-3.036-4.867-4.419-7.902-3.091s-4.419,4.867-3.091,7.902c0.782,1.786,2.383,3.081,4.293,3.472L8.788,18.881z M15.7,14.233 l-0.295,0.295c-0.097,0.097-0.255,0.098-0.352,0.001c0,0-0.001-0.001-0.001-0.001l-2.3-2.3c-0.979-0.974-2.562-0.969-3.536,0.01 C8.751,12.706,8.489,13.339,8.489,14c-0.002,0.663,0.262,1.3,0.733,1.767l3.428,3.429c-1.219,0.243-2.01,1.428-1.766,2.647 c0.195,0.976,1.008,1.709,1.999,1.8L16.745,24c0.549,0.063,1.045-0.33,1.108-0.879c0.063-0.549-0.33-1.045-0.879-1.108 c-0.015-0.002-0.03-0.003-0.045-0.004l-3.863-0.356c-0.136-0.014-0.236-0.135-0.225-0.271c0.003-0.13,0.11-0.233,0.24-0.23 c0.01,0,0.021,0.001,0.031,0.003c0.62-0.017,1.239-0.069,1.854-0.155c0.55-0.05,0.955-0.537,0.905-1.087 c-0.021-0.231-0.122-0.448-0.286-0.613l-4.949-4.95c-0.192-0.199-0.186-0.515,0.012-0.707c0.194-0.187,0.501-0.187,0.695,0 l3.181,3.182c0.391,0.39,1.024,0.39,1.414,0l1.179-1.178c0.923-0.882,2.377-0.882,3.3,0l1.883,1.886l0,0 c0.391,0.39,1.024,0.39,1.415,0c0.39-0.391,0.39-1.024-0.001-1.415l-1.887-1.885c-1.687-1.692-4.426-1.697-6.118-0.01 c-0.003,0.003-0.007,0.007-0.01,0.01H15.7z" />
    </G>
  ),
  compass: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M24,12c0-6.627-5.373-12-12-12S0,5.373,0,12s5.373,12,12,12C18.624,23.993,23.993,18.624,24,12z M2.08,13.545 c-0.041-0.267,0.142-0.518,0.409-0.559c0.025-0.004,0.05-0.006,0.075-0.006h1.354c0.541,0,0.98-0.439,0.98-0.98 c0-0.541-0.439-0.98-0.98-0.98H2.564c-0.271,0-0.49-0.22-0.49-0.49c0-0.025,0.002-0.05,0.006-0.075 C2.327,8.872,2.952,7.371,3.9,6.08c0.16-0.218,0.466-0.266,0.685-0.106c0.02,0.015,0.039,0.031,0.057,0.049l0.955,0.955 c0.36,0.404,0.98,0.44,1.384,0.079c0.404-0.36,0.44-0.98,0.079-1.384C7.034,5.645,7.007,5.618,6.978,5.592L6.022,4.638 C5.921,4.536,5.869,4.396,5.88,4.253C5.891,4.11,5.964,3.98,6.08,3.896c1.291-0.948,2.792-1.571,4.375-1.816 c0.267-0.041,0.518,0.142,0.559,0.409c0.004,0.025,0.006,0.05,0.006,0.075v1.354c0,0.541,0.439,0.98,0.98,0.98 c0.541,0,0.98-0.439,0.98-0.98c0,0,0,0,0,0V2.564c0-0.271,0.22-0.49,0.49-0.49c0.025,0,0.05,0.002,0.075,0.006 c4.313,0.678,7.697,4.062,8.375,8.375c0.041,0.267-0.142,0.518-0.409,0.559c-0.025,0.004-0.05,0.006-0.075,0.006h-1.354 c-0.541,0-0.98,0.439-0.98,0.98c0,0.541,0.439,0.98,0.98,0.98h1.354c0.271,0,0.49,0.22,0.49,0.49c0,0.025-0.002,0.05-0.006,0.075 c-0.246,1.583-0.868,3.083-1.815,4.375c-0.16,0.218-0.466,0.266-0.685,0.106c-0.02-0.015-0.039-0.031-0.057-0.049l-0.955-0.955 c-0.383-0.383-1.003-0.383-1.386,0s-0.383,1.003,0,1.386l0.956,0.954c0.101,0.102,0.153,0.242,0.142,0.385 c-0.011,0.143-0.084,0.273-0.2,0.357c-1.291,0.948-2.792,1.571-4.375,1.816c-0.267,0.041-0.518-0.142-0.559-0.409 c-0.004-0.025-0.006-0.05-0.006-0.075v-1.354c0-0.541-0.439-0.98-0.98-0.98c-0.541,0-0.98,0.439-0.98,0.98v1.354 c0,0.271-0.22,0.49-0.49,0.49c-0.025,0-0.05-0.002-0.075-0.006C6.142,21.242,2.758,17.858,2.08,13.545z M17.739,6.3 c-0.266-0.282-0.673-0.38-1.039-0.251L9.953,8.477c-0.688,0.246-1.23,0.787-1.476,1.475L6.049,16.7 c-0.184,0.509,0.08,1.071,0.589,1.255c0.231,0.083,0.485,0.077,0.711-0.018l6.542-2.726c0.598-0.247,1.072-0.722,1.32-1.319 l2.725-6.542C18.084,6.992,18.007,6.58,17.739,6.3z M12,13.714c-0.947,0-1.714-0.767-1.714-1.714c0-0.947,0.767-1.714,1.714-1.714 c0.947,0,1.714,0.767,1.714,1.714l0,0C13.713,12.946,12.946,13.713,12,13.714z" />
    </G>
  ),
  arrowLeft: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M4.5,12c-0.001-0.662,0.283-1.292,0.78-1.729L16.432,0.46c0.781-0.656,1.946-0.554,2.602,0.228 c0.634,0.756,0.562,1.877-0.163,2.545l-9.752,8.579c-0.104,0.091-0.114,0.249-0.023,0.353c0.007,0.008,0.015,0.016,0.023,0.023 l9.752,8.579c0.781,0.656,0.883,1.821,0.228,2.602c-0.656,0.781-1.821,0.883-2.602,0.228c-0.022-0.018-0.043-0.037-0.065-0.057 L5.284,13.732C4.786,13.294,4.501,12.663,4.5,12z" />
    </G>
  ),
  arrowLineLeft: (
    <G>
      <Path d="M22.548,10.561H5.437c-0.139-0.001-0.25-0.115-0.249-0.253c0.001-0.071,0.031-0.138,0.084-0.185l8.637-7.6 c0.579-0.546,0.605-1.457,0.06-2.036c-0.519-0.55-1.375-0.605-1.96-0.126L0.828,10.2c-0.994,0.877-1.089,2.393-0.213,3.387 c0.066,0.075,0.137,0.146,0.213,0.213l11.179,9.837c0.619,0.5,1.525,0.403,2.025-0.215c0.47-0.582,0.416-1.428-0.125-1.946 l-8.637-7.6c-0.103-0.092-0.112-0.251-0.02-0.354c0.047-0.053,0.114-0.083,0.185-0.084h17.113c0.795-0.021,1.423-0.682,1.402-1.477 c-0.02-0.766-0.636-1.381-1.402-1.402V10.561z" />
    </G>
  ),
  arrowRight: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M19.5,12c0.001,0.662-0.283,1.292-0.78,1.729L7.568,23.54c-0.781,0.656-1.946,0.554-2.602-0.228 c-0.634-0.756-0.562-1.877,0.163-2.545l9.752-8.579c0.104-0.091,0.114-0.249,0.023-0.353c-0.007-0.008-0.015-0.016-0.023-0.023 L5.129,3.233c-0.75-0.691-0.798-1.86-0.106-2.61c0.669-0.726,1.79-0.797,2.545-0.163l11.148,9.808 C19.214,10.706,19.499,11.337,19.5,12z" />
    </G>
  ),
  refresh: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M10.664,20.073c-0.676-0.14-1.337,0.294-1.477,0.97c-0.14,0.676,0.294,1.337,0.97,1.477 c5.809,1.198,11.489-2.539,12.687-8.348c1.198-5.809-2.539-11.489-8.348-12.687S3.007,4.024,1.809,9.833 C1.376,11.934,1.581,14.117,2.4,16.1c0.045,0.107,0.011,0.232-0.084,0.3l-1,0.726c-0.447,0.324-0.546,0.95-0.222,1.397 c0.145,0.199,0.358,0.338,0.599,0.39l3.946,0.849c0.069,0.014,0.139,0.022,0.21,0.022c0.471,0,0.879-0.329,0.978-0.79l0.945-4.4 c0.116-0.54-0.227-1.072-0.767-1.188c-0.278-0.06-0.568,0.001-0.798,0.168l-1.361,0.989c-0.112,0.081-0.268,0.057-0.349-0.055 c-0.016-0.022-0.029-0.047-0.037-0.073C3.113,10.079,5.552,5.457,9.908,4.11s8.978,1.092,10.325,5.448 c1.347,4.356-1.092,8.978-5.448,10.325c-1.335,0.413-2.753,0.48-4.12,0.195L10.664,20.073z" />
    </G>
  ),
  arrowCircleRight: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M12,24c6.627,0,12-5.373,12-12S18.627,0,12,0S0,5.373,0,12C0.007,18.624,5.376,23.993,12,24z M12,22 C6.477,22,2,17.523,2,12S6.477,2,12,2s10,4.477,10,10C21.993,17.52,17.52,21.993,12,22z M12.115,15.616l1.939-1.94 c0.097-0.098,0.097-0.256-0.002-0.354c-0.047-0.046-0.11-0.072-0.175-0.072H6c-0.69,0-1.25-0.56-1.25-1.25S5.31,10.75,6,10.75 h7.879c0.138,0,0.25-0.111,0.25-0.25c0-0.067-0.026-0.13-0.073-0.177l-1.939-1.94c-0.488-0.488-0.488-1.279,0-1.767 s1.279-0.488,1.767,0l4.5,4.5c0.488,0.488,0.488,1.278,0.001,1.766c0,0,0,0-0.001,0.001l-4.5,4.5c-0.488,0.488-1.279,0.488-1.767,0 s-0.488-1.279,0-1.767L12.115,15.616z" />
    </G>
  ),
  customerSupport: (
    <G>
      <Path d="M24,14c0.001-1.906-1.202-3.606-3-4.239V9c0-4.971-4.029-9-9-9S3,4.029,3,9v0.761c-2.343,0.83-3.568,3.402-2.738,5.745 C0.715,16.785,1.721,17.791,3,18.244c0.781,0.276,1.638-0.133,1.914-0.914C4.971,17.169,5,17,5,16.83V9c0-3.866,3.134-7,7-7 s7,3.134,7,7v7.83c0.004,0.421,0.186,0.82,0.5,1.1v0.57c0,1.474-1.291,2-2.5,2h-1.778c-0.552-0.957-1.775-1.284-2.732-0.732 c-0.957,0.552-1.284,1.775-0.732,2.732c0.552,0.957,1.775,1.284,2.732,0.732c0.304-0.176,0.557-0.428,0.732-0.732H17 c2.65,0,4.5-1.645,4.5-4v-0.478C23.028,17.264,23.997,15.706,24,14z M15.144,14.045c0.154-0.236,0.418-0.378,0.7-0.377 c0.161,0,0.319,0.046,0.454,0.135c0.386,0.251,0.495,0.767,0.244,1.152c0,0.001-0.001,0.001-0.001,0.002 c-1.633,2.507-4.99,3.216-7.497,1.583c-0.632-0.412-1.171-0.951-1.583-1.583c-0.252-0.387-0.143-0.904,0.244-1.156 c0.387-0.252,0.904-0.143,1.156,0.244c1.129,1.736,3.452,2.229,5.188,1.1c0.44-0.286,0.814-0.66,1.1-1.1L15.144,14.045z M8.667,7.834c0.921,0,1.667,0.746,1.667,1.667s-0.746,1.667-1.667,1.667S7,10.422,7,9.501S7.746,7.834,8.667,7.834z M15.333,7.834 C16.254,7.834,17,8.58,17,9.501s-0.746,1.667-1.667,1.667c-0.921,0-1.667-0.746-1.667-1.667S14.412,7.834,15.333,7.834z" />
    </G>
  ),
  smileyThrilled: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M12,0C5.373,0,0,5.373,0,12s5.373,12,12,12s12-5.373,12-12C23.993,5.376,18.624,0.007,12,0z M12,22C6.477,22,2,17.523,2,12 S6.477,2,12,2s10,4.477,10,10C21.994,17.52,17.52,21.994,12,22z M9.084,9.9c0.159,0.365,0.519,0.6,0.917,0.6 c0.138,0.001,0.274-0.028,0.4-0.084c0.505-0.221,0.736-0.81,0.515-1.316C10.143,7.328,8.08,6.519,6.308,7.292 C5.499,7.645,4.853,8.291,4.5,9.1c-0.236,0.499-0.024,1.095,0.476,1.332s1.095,0.024,1.332-0.476 C6.316,9.938,6.324,9.919,6.332,9.9c0.33-0.76,1.214-1.108,1.974-0.777C8.654,9.274,8.932,9.552,9.084,9.9L9.084,9.9z M19.5,9.1 c-0.774-1.771-2.837-2.58-4.608-1.807c-0.808,0.353-1.454,0.998-1.807,1.807c-0.236,0.499-0.024,1.095,0.476,1.332 c0.499,0.236,1.095,0.024,1.332-0.476c0.009-0.019,0.017-0.037,0.025-0.056c0.33-0.76,1.214-1.108,1.974-0.777 c0.348,0.151,0.626,0.429,0.777,0.777c0.159,0.365,0.519,0.6,0.917,0.6c0.138,0.001,0.274-0.028,0.4-0.084 C19.49,10.195,19.721,9.606,19.5,9.1z M16.561,14.5H7.439c-0.164,0.005-0.311,0.101-0.38,0.25c-0.079,0.157-0.079,0.343,0,0.5 C7.957,17.182,9.87,18.441,12,18.5c2.13-0.06,4.043-1.318,4.941-3.25c0.079-0.157,0.079-0.343,0-0.5 C16.872,14.601,16.725,14.504,16.561,14.5z" />
    </G>
  ),
  receipt: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M18.5,0.063h-13c-0.828,0-1.5,0.672-1.5,1.5v20.913c0.001,0.552,0.449,1,1.001,0.999c0.238,0,0.468-0.085,0.649-0.24 l2.218-1.9c0.089-0.076,0.219-0.08,0.313-0.01l3.219,2.413c0.356,0.265,0.844,0.265,1.2,0l3.219-2.414 c0.094-0.07,0.224-0.066,0.313,0.01l2.218,1.9c0.42,0.359,1.051,0.31,1.41-0.11c0.154-0.181,0.24-0.41,0.24-0.648V1.563 C20,0.735,19.328,0.063,18.5,0.063z M16.5,12.563c-0.414,0-0.75-0.336-0.75-0.75s0.336-0.75,0.75-0.75s0.75,0.336,0.75,0.75 S16.914,12.563,16.5,12.563z M17.25,15.813c0,0.414-0.336,0.75-0.75,0.75s-0.75-0.336-0.75-0.75s0.336-0.75,0.75-0.75 S17.25,15.399,17.25,15.813z M16.5,8.313c-0.414,0-0.75-0.336-0.75-0.75s0.336-0.75,0.75-0.75s0.75,0.336,0.75,0.75l0,0 C17.25,7.977,16.914,8.313,16.5,8.313z M7,12.563c-0.414,0-0.75-0.336-0.75-0.75s0.336-0.75,0.75-0.75h6 c0.414,0,0.75,0.336,0.75,0.75s-0.336,0.75-0.75,0.75H7z M12.25,15.813c0,0.414-0.336,0.75-0.75,0.75H7 c-0.414,0-0.75-0.336-0.75-0.75s0.336-0.75,0.75-0.75h4.5C11.914,15.063,12.25,15.399,12.25,15.813z M6.25,7.563 c0-0.414,0.336-0.75,0.75-0.75h5.5c0.414,0,0.75,0.336,0.749,0.751c0,0.414-0.336,0.749-0.749,0.749H7 C6.586,8.313,6.25,7.977,6.25,7.563z" />
    </G>
  ),
  facebook: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M19.55,14.56c-0.031,0.252-0.246,0.442-0.5,0.44H17c-0.276,0-0.5,0.224-0.5,0.5v8c0,0.276,0.224,0.5,0.5,0.5h6 c0.552,0,1-0.448,1-1V1c0-0.552-0.448-1-1-1H1C0.448,0,0,0.448,0,1v22c0,0.552,0.448,1,1,1h11c0.276,0,0.5-0.224,0.5-0.5v-8 c0-0.276-0.224-0.5-0.5-0.5h-2c-0.276,0-0.5-0.224-0.5-0.5v-3c0-0.276,0.224-0.5,0.5-0.5h2c0.276,0,0.5-0.224,0.5-0.5V9.19 c0-3.142,2.548-5.69,5.69-5.69h1.31C19.776,3.5,20,3.724,20,4v3c0,0.276-0.224,0.5-0.5,0.5h-1.31c-0.933,0-1.69,0.757-1.69,1.69 l0,0v1.31c0,0.276,0.224,0.5,0.5,0.5h2.43c0.276-0.002,0.502,0.22,0.504,0.496c0,0.021-0.001,0.043-0.004,0.064L19.55,14.56z" />
    </G>
  ),
  instagram: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M17.5,0h-11C2.912,0.006,0.006,2.912,0,6.5v11c0.006,3.588,2.912,6.494,6.5,6.5h11c3.588-0.006,6.494-2.912,6.5-6.5v-11 C23.994,2.912,21.088,0.006,17.5,0z M12,17.5c-3.038,0-5.5-2.462-5.5-5.5S8.962,6.5,12,6.5s5.5,2.462,5.5,5.5S15.038,17.5,12,17.5z M18.5,6.5C17.672,6.5,17,5.828,17,5s0.672-1.5,1.5-1.5S20,4.172,20,5S19.328,6.5,18.5,6.5z" />
    </G>
  ),
  twitter: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M23.32,6.44c0.212-0.177,0.241-0.492,0.065-0.704c-0.068-0.082-0.161-0.14-0.265-0.166l-0.79-0.2 c-0.268-0.067-0.431-0.339-0.364-0.606C21.974,4.731,21.986,4.7,22,4.67l0.44-0.89c0.12-0.249,0.015-0.548-0.233-0.668 C22.099,3.06,21.976,3.049,21.86,3.08l-2,0.56c-0.151,0.044-0.314,0.014-0.44-0.08c-0.865-0.649-1.918-1-3-1c-2.761,0-5,2.239-5,5 l0,0v0.36c0.001,0.127-0.094,0.235-0.22,0.25C8.39,8.5,5.7,7.07,2.8,3.73c-0.128-0.142-0.325-0.2-0.51-0.15 C2.124,3.656,2.013,3.817,2,4C1.599,5.645,1.761,7.377,2.46,8.92c0.062,0.123,0.013,0.274-0.11,0.336 C2.303,9.279,2.251,9.288,2.2,9.28L1.08,9.06C0.807,9.016,0.551,9.202,0.507,9.474C0.498,9.533,0.499,9.592,0.51,9.65 c0.175,1.555,1.047,2.945,2.37,3.78c0.124,0.06,0.176,0.21,0.116,0.334c-0.025,0.051-0.065,0.092-0.116,0.116l-0.53,0.21 c-0.256,0.103-0.381,0.394-0.278,0.65c0.005,0.014,0.011,0.027,0.018,0.04c0.595,1.302,1.791,2.229,3.2,2.48 c0.13,0.047,0.197,0.191,0.15,0.32c-0.025,0.07-0.08,0.124-0.15,0.15C3.93,18.292,2.471,18.575,1,18.56 c-0.276-0.055-0.545,0.124-0.6,0.4s0.124,0.545,0.4,0.6l0,0c2.548,1.208,5.321,1.866,8.14,1.93c2.479,0.038,4.915-0.658,7-2 c3.484-2.326,5.571-6.241,5.56-10.43V8.19c0.001-0.147,0.067-0.286,0.18-0.38L23.32,6.44z" />
    </G>
  ),
  handshake: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M23,6.393h-2.062c-0.312,0.002-0.62,0.074-0.9,0.211c-0.063,0.03-0.135,0.033-0.2,0.007l-4.3-1.645l0,0 c-0.842-0.301-1.77-0.249-2.574,0.143l0,0l-2.123,1.03C10.764,6.177,10.674,6.174,10.6,6.13c-0.801-0.476-1.778-0.55-2.641-0.2l0,0 L4.966,7.206c-0.1,0.043-0.217,0.016-0.288-0.067C4.275,6.666,3.684,6.393,3.062,6.393H1c-0.414,0-0.75,0.336-0.75,0.75v9.5 c0,0.414,0.336,0.75,0.75,0.75h2.062c0.688,0,1.332-0.334,1.73-0.895c0.046-0.064,0.121-0.103,0.2-0.105h0.931 c0.056,0,0.111,0.019,0.155,0.053l2.794,2.2l0.022,0.019c0.706,0.704,1.831,0.758,2.6,0.123l3.057-2.508 c0.032-0.026,0.07-0.044,0.11-0.052l3.895-0.779c0.066-0.013,0.134,0.001,0.19,0.039c0.055,0.038,0.093,0.097,0.105,0.163 c0.18,1.01,1.059,1.744,2.085,1.743H23c0.414,0,0.75-0.336,0.75-0.75v-9.5C23.751,6.73,23.415,6.394,23,6.393 C23.001,6.393,23,6.393,23,6.393z M14.784,13.506l-1.133,0.947l-0.023,0.017c-0.044,0.03-0.085,0.063-0.123,0.1l-0.009,0.008 l-3.038,2.541c-0.081,0.065-0.195,0.065-0.276,0l-3.2-2.521c-0.177-0.138-0.395-0.213-0.619-0.213H5.438 c-0.138,0.001-0.249-0.11-0.25-0.248c0-0.001,0-0.001,0-0.002V9.45c0-0.1,0.06-0.19,0.152-0.229l3.378-1.439h0.006 C8.84,7.736,8.97,7.793,9.016,7.909c0.018,0.045,0.02,0.094,0.008,0.14c-0.143,0.544-0.108,1.12,0.1,1.643 c0.259,0.655,0.768,1.181,1.415,1.462c0.331,0.143,0.688,0.217,1.049,0.216c0.34,0,0.677-0.064,0.993-0.189l0,0l0.158-0.065 c0.097-0.04,0.209-0.014,0.28,0.064l1.788,1.971c0.093,0.101,0.087,0.259-0.015,0.352c-0.003,0.003-0.006,0.006-0.009,0.008 L14.784,13.506z M18.812,13.153c0,0.119-0.084,0.221-0.2,0.245L17.3,13.66c-0.075,0.015-0.152-0.004-0.21-0.054 c-0.059-0.049-0.092-0.123-0.089-0.2c0.01-0.473-0.146-0.935-0.441-1.306l-0.013-0.016l-2.636-2.9 c-0.293-0.295-0.729-0.394-1.12-0.254l0,0l-0.958,0.393l0,0c-0.334,0.132-0.711-0.031-0.844-0.365c0,0,0-0.001,0-0.001 c-0.125-0.308,0.005-0.66,0.3-0.812l0,0L13.845,6.9l0,0c0.309-0.149,0.664-0.171,0.99-0.063l0,0l3.84,1.47 c0.079,0.03,0.131,0.106,0.13,0.19L18.812,13.153z" />
    </G>
  ),
  addRatingIcon: (
    <G>
      <Path d="M11.52,0 C17.87904,0.00672 23.03328,5.16096 23.04,11.52 C23.04,12.3654141 22.9489142,13.1895697 22.7760218,13.9831878 C23.4894147,14.8726939 23.9359299,15.9865307 23.9936311,17.2022857 L24,17.46528 L24,17.46528 L23.9959743,17.6791703 C23.8835913,20.6597031 21.4323795,23.04096 18.42432,23.04096 C17.4032282,23.04096 16.4463007,22.7665734 15.6232383,22.287501 C14.3491585,22.7736553 12.9656602,23.04 11.52,23.04 C5.15808,23.04 0,17.88192 0,11.52 C0,5.15808 5.15808,0 11.52,0 Z M11.52,1.92 C6.21792,1.92 1.92,6.21792 1.92,11.52 C1.92,16.82208 6.21792,21.12 11.52,21.12 C12.3633777,21.1190833 13.1813207,21.009522 13.960586,20.8045592 C13.2614836,19.8737286 12.84864,18.7177752 12.84864,17.46528 C12.84864,14.3856 15.34464,11.8896 18.42432,11.8896 C19.3794464,11.8904938 20.2783611,12.1313044 21.0640832,12.5550224 C21.100554,12.2151488 21.1196198,11.8697616 21.12,11.52 C21.12,6.21792 16.82208,1.92 11.52,1.92 Z M18.42432,14.62176 C18.06,14.62176 17.7586,14.8928 17.7108967,15.2441033 L17.70432,15.34176 L17.70432,16.50432 C17.70432,16.6178743 17.6253257,16.7130906 17.5193283,16.7379778 L17.46432,16.74432 L16.3008,16.74432 C15.90336,16.74432 15.5808,17.06688 15.5808,17.46432 C15.5808,17.82864 15.85184,18.13004 16.2031433,18.1777433 L16.3008,18.18432 L17.46432,18.18432 C17.5778743,18.18432 17.6730906,18.2633143 17.6979778,18.3693117 L17.70432,18.42432 L17.70432,19.584 C17.70432,19.98144 18.02688,20.304 18.42432,20.304 C18.78864,20.304 19.09004,20.03296 19.1377433,19.6816567 L19.14432,19.584 L19.14432,18.42432 C19.14432,18.3107657 19.2233143,18.2155494 19.3293117,18.1906622 L19.38432,18.18432 L20.544,18.18432 C20.94144,18.18432 21.264,17.86176 21.264,17.46432 C21.264,17.1 20.99296,16.7986 20.6416567,16.7508967 L20.544,16.74432 L19.38432,16.74432 C19.2707657,16.74432 19.1755494,16.6653257 19.1506622,16.5593283 L19.14432,16.50432 L19.14432,15.34176 C19.14432,14.94432 18.82176,14.62176 18.42432,14.62176 Z M7.68,6.72 C8.7408,6.72 9.6,7.5792 9.6,8.64 C9.6,9.7008 8.7408,10.56 7.68,10.56 C6.6192,10.56 5.76,9.7008 5.76,8.64 C5.76,7.5792 6.6192,6.72 7.68,6.72 Z M15.36,6.72 C16.4208,6.72 17.28,7.5792 17.28,8.64 C17.28,9.7008 16.4208,10.56 15.36,10.56 C14.2992,10.56 13.44,9.7008 13.44,8.64 C13.44,7.5792 14.2992,6.72 15.36,6.72 Z" />
    </G>
  ),
  flame: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M21.578,11.135c-0.08-0.264-0.36-0.413-0.624-0.333c-0.064,0.02-0.124,0.052-0.176,0.096 c-0.59,0.502-1.245,0.921-1.947,1.248c-0.125,0.058-0.273,0.004-0.331-0.12c-0.013-0.029-0.021-0.059-0.023-0.091 C18.023,5.988,13.623,1.091,7.758,0.006C7.485-0.037,7.229,0.149,7.186,0.421C7.168,0.536,7.19,0.654,7.249,0.754 C8.07,2.201,8.501,3.836,8.5,5.5c0,1.137-0.213,2.264-0.629,3.322C7.82,8.951,7.674,9.014,7.545,8.962 C7.497,8.943,7.456,8.91,7.428,8.867C6.971,8.159,6.618,7.388,6.38,6.579C6.302,6.314,6.024,6.163,5.759,6.241 C5.693,6.261,5.632,6.293,5.58,6.337C3.308,8.233,1.996,11.041,2,14c0,0.18,0,0.359,0.01,0.537 c0.24,5.518,4.908,9.796,10.426,9.555C17.824,23.857,22.055,19.393,22,14C22.001,13.029,21.859,12.064,21.578,11.135z M12,21.25 c-2.22-0.01-4.011-1.817-4.001-4.037c0-0.025,0-0.051,0.001-0.076c0.037-3.017,1.865-5.723,4.65-6.884 c0.129-0.051,0.275,0.013,0.325,0.142c0.032,0.081,0.019,0.173-0.033,0.243c-0.871,1.21-1.049,2.787-0.47,4.161 c0.034,0.071,0.1,0.122,0.177,0.138c0.077,0.015,0.157-0.007,0.216-0.06c0.34-0.275,0.595-0.641,0.735-1.055 c0.02-0.071,0.071-0.129,0.138-0.158c0.067-0.031,0.144-0.031,0.211,0c1.349,0.667,2.16,2.085,2.051,3.586 c0.044,2.166-1.677,3.956-3.842,4C12.105,21.251,12.053,21.251,12,21.25z" />
    </G>
  ),
  bin: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M20.318,9h-15c-0.276,0-0.5,0.224-0.5,0.5V22c0,1.105,0.895,2,2,2h12c1.105,0,2-0.895,2-2V9.5 C20.818,9.224,20.594,9,20.318,9z M11.068,20.5c0,0.414-0.336,0.75-0.75,0.75s-0.75-0.336-0.75-0.75V13 c0-0.414,0.336-0.75,0.75-0.75s0.75,0.336,0.75,0.75V20.5z M16.068,20.5c0,0.414-0.336,0.75-0.75,0.75s-0.75-0.336-0.75-0.75V13 c0-0.414,0.336-0.75,0.75-0.75s0.75,0.336,0.75,0.75V20.5z M21.628,2.552l-4.663,0.9c-0.136,0.026-0.267-0.063-0.293-0.198 c0-0.001,0-0.001,0-0.002l-0.238-1.227c-0.264-1.354-1.575-2.238-2.929-1.976L8.6,1C7.244,1.262,6.358,2.573,6.62,3.929 c0,0,0,0.001,0,0.001l0.237,1.227c0.026,0.135-0.061,0.266-0.196,0.292c-0.001,0-0.002,0-0.004,0.001l-4.663,0.9 C1.452,6.454,1.096,6.978,1.2,7.52c0,0,0,0.001,0,0.001c0.119,0.533,0.633,0.88,1.172,0.793l19.636-3.8 c0.542-0.105,0.897-0.63,0.792-1.172C22.695,2.8,22.17,2.445,21.628,2.55l0,0V2.552z M8.58,3.552 C8.528,3.281,8.705,3.019,8.977,2.967c0.001,0,0.002,0,0.003-0.001l4.909-0.949c0.271-0.052,0.533,0.127,0.585,0.398 c0,0.001,0,0.001,0,0.002l0.238,1.228c0.026,0.136-0.064,0.267-0.2,0.293L9.11,4.973C8.974,4.999,8.843,4.91,8.817,4.775 c0-0.001,0-0.001,0-0.002L8.58,3.552z" />
    </G>
  ),
  archive: (
    <G transform="matrix(1,0,0,1,0,0)">
      <Path d="M20,0H4C2.895,0,2,0.895,2,2v20c0,1.105,0.895,2,2,2h16c1.105,0,2-0.895,2-2V2C22,0.895,21.105,0,20,0z M4,10 c0-0.276,0.224-0.5,0.5-0.5h15c0.276,0,0.5,0.224,0.5,0.5v4.5c0,0.276-0.224,0.5-0.5,0.5h-15C4.224,15,4,14.776,4,14.5V10z M19.5,2 C19.776,2,20,2.224,20,2.5V7c0,0.276-0.224,0.5-0.5,0.5h-15C4.224,7.5,4,7.276,4,7V2.5C4,2.224,4.224,2,4.5,2H19.5z M4.5,22 C4.224,22,4,21.776,4,21.5v-4C4,17.224,4.224,17,4.5,17h15c0.276,0,0.5,0.224,0.5,0.5v4c0,0.276-0.224,0.5-0.5,0.5H4.5z M9.912,5.316C10.048,5.724,10.43,6,10.86,6h2.28c0.43,0,0.812-0.276,0.948-0.684l0.167-0.5c0.175-0.524-0.109-1.09-0.633-1.265 C13.52,3.517,13.413,3.5,13.306,3.5h-2.612c-0.552,0-1,0.447-1,1c0,0.107,0.017,0.214,0.051,0.316L9.912,5.316z M14.118,11.416 C13.93,11.155,13.628,11,13.306,11h-2.612c-0.552,0-1,0.447-1,1c0,0.107,0.017,0.214,0.051,0.316l0.167,0.5 c0.136,0.408,0.518,0.684,0.948,0.684h2.28c0.43,0,0.812-0.276,0.948-0.684l0.167-0.5C14.356,12.011,14.305,11.677,14.118,11.416z M13.306,18.5h-2.612c-0.552,0-1,0.447-1,1c0,0.107,0.017,0.214,0.051,0.316l0.167,0.5C10.048,20.724,10.43,21,10.86,21h2.28 c0.43,0,0.812-0.276,0.948-0.684l0.167-0.5c0.175-0.524-0.109-1.09-0.633-1.265C13.52,18.517,13.413,18.5,13.306,18.5z" />
    </G>
  ),
  star: (
    <G>
      <Path d="M23.555,8.729c-0.219-0.588-0.779-0.978-1.406-0.98h-6.087c-0.212,0-0.402-0.134-0.472-0.334l-2.185-6.193 c-0.29-0.776-1.154-1.17-1.93-0.88c-0.407,0.152-0.728,0.473-0.88,0.88L10.59,1.238L8.41,7.415c-0.07,0.2-0.259,0.334-0.471,0.334 H1.85c-0.828-0.001-1.501,0.67-1.501,1.499c0,0.445,0.197,0.867,0.538,1.152l5.184,4.3c0.159,0.132,0.22,0.347,0.155,0.543 l-2.178,6.531c-0.262,0.786,0.163,1.635,0.949,1.897c0.462,0.154,0.969,0.074,1.361-0.213l5.346-3.92 c0.176-0.129,0.415-0.129,0.591,0l5.344,3.919c0.667,0.491,1.606,0.348,2.097-0.319c0.289-0.393,0.369-0.902,0.215-1.364 l-2.178-6.535c-0.065-0.196-0.004-0.411,0.155-0.543l5.194-4.306C23.6,9.982,23.773,9.319,23.555,8.729z" />
    </G>
  ),
  questionMarkCircle: (
    <G>
      <Path d="M12,0C5.373,0,0,5.373,0,12s5.373,12,12,12s12-5.373,12-12C23.993,5.376,18.624,0.007,12,0z M12,19 c-0.828,0-1.5-0.672-1.5-1.5S11.172,16,12,16s1.5,0.672,1.5,1.5S12.828,19,12,19z M13.6,12.92c-0.365,0.159-0.6,0.519-0.6,0.917 c0,0.552-0.448,1-1,1s-1-0.448-1-1c0-1.193,0.707-2.273,1.8-2.75c1.012-0.442,1.475-1.621,1.033-2.633S12.212,6.979,11.2,7.421 C10.471,7.739,10,8.459,10,9.255c0,0.552-0.448,1-1,1s-1-0.448-1-1c0-2.209,1.791-4,4-4s4,1.791,4,4 C16,10.845,15.058,12.285,13.6,12.92L13.6,12.92z" />
    </G>
  ),
  alarmBell: (
    <G>
      <Path d="M21,17.5c-0.828,0-1.5-0.672-1.5-1.5v-4.862c0.119-3.924-2.641-7.348-6.5-8.065V1c0-0.552-0.448-1-1-1s-1,0.448-1,1v2.073 C7.141,3.79,4.381,7.214,4.5,11.138V16c0,0.828-0.672,1.5-1.5,1.5c-0.552,0-1,0.448-1,1s0.448,1,1,1h18c0.552,0,1-0.448,1-1 S21.552,17.5,21,17.5z M14.236,21H9.764c-0.127,0-0.234,0.096-0.248,0.222C9.505,21.314,9.5,21.407,9.5,21.5 c0,1.381,1.119,2.5,2.5,2.5s2.5-1.119,2.5-2.5c0-0.093-0.005-0.186-0.016-0.278C14.471,21.095,14.363,20.999,14.236,21z" />
    </G>
  ),
  wrench: (
    <G>
      <Path d="M23.46,7.855a.5.5,0,0,0-.415-.779H21.351a.5.5,0,0,1-.343-.136l-1.591-1.5a.5.5,0,0,1,0-.728l1.591-1.5a.5.5,0,0,1,.343-.136h1.694A.5.5,0,0,0,23.46,2.3a5.053,5.053,0,0,0-.622-.757,5,5,0,0,0-8.427,4.578.5.5,0,0,1-.135.459l-9.21,9.21a.5.5,0,0,1-.382.145A4,4,0,1,0,8.446,19.7a.5.5,0,0,1,.146-.381l9.219-9.218a.5.5,0,0,1,.458-.136,4.972,4.972,0,0,0,4.569-1.358A5.045,5.045,0,0,0,23.46,7.855ZM5.514,20.985a1.5,1.5,0,1,1,0-2.121A1.5,1.5,0,0,1,5.514,20.985Z" />
    </G>
  ),
  calendar: (
    <G>
      <Path d="M21.5,3H18.75a.25.25,0,0,1-.25-.25V1a1,1,0,0,0-2,0v4.75a.75.75,0,0,1-.75.75h0a.75.75,0,0,1-.75-.75V3.5a.5.5,0,0,0-.5-.5H8.25A.25.25,0,0,1,8,2.751V1A1,1,0,1,0,6,1v4.75a.75.75,0,0,1-.75.75h0a.75.75,0,0,1-.75-.75V3.5A.5.5,0,0,0,4,3H2.5a2,2,0,0,0-2,2V22a2,2,0,0,0,2,2h19a2,2,0,0,0,2-2V5A2,2,0,0,0,21.5,3ZM21,22H3a.5.5,0,0,1-.5-.5V9.5A.5.5,0,0,1,3,9H21a.5.5,0,0,1,.5.5v12A.5.5,0,0,1,21,22Z" />
    </G>
  ),
  doubleBedAdd: (
    <G>
      <Path d="M.9,15.5H9.248a.5.5,0,0,0,.477-.352A8.023,8.023,0,0,1,17.375,9.5a7.925,7.925,0,0,1,4.883,1.669.5.5,0,0,0,.8-.486l-.7-3.773a.5.5,0,0,0-.49-.41H2.385a.5.5,0,0,0-.49.41l-1.49,8a.56.56,0,0,0,.11.41A.527.527,0,0,0,.9,15.5Z" />
      <Path d="M9.375,17.5c0-.159,0-.316.013-.472a.5.5,0,0,0-.5-.528H.625a.5.5,0,0,0-.5.5v3.25a2.253,2.253,0,0,0,2.25,2.25.248.248,0,0,1,.25.25v.5a.75.75,0,0,0,1.5,0V23a.5.5,0,0,1,.5-.5h5.547a.5.5,0,0,0,.424-.766A7.911,7.911,0,0,1,9.375,17.5Z" />
      <Path d="M2.625,5.5H4.2A.5.5,0,0,0,4.7,5.082l.36-2.165A.5.5,0,0,1,5.549,2.5h4.576a.5.5,0,0,1,.5.5V5a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5V3a.5.5,0,0,1,.5-.5H18.7a.5.5,0,0,1,.494.417l.36,2.165a.5.5,0,0,0,.494.418h1.576a.5.5,0,0,0,.5-.5V2.25A2.253,2.253,0,0,0,19.875,0H4.375a2.253,2.253,0,0,0-2.25,2.25V5A.5.5,0,0,0,2.625,5.5Z" />
      <Path d="M17.375,11a6.5,6.5,0,1,0,6.5,6.5A6.508,6.508,0,0,0,17.375,11Zm2.5,7.5h-1a.5.5,0,0,0-.5.5v1a1,1,0,0,1-2,0V19a.5.5,0,0,0-.5-.5h-1a1,1,0,0,1,0-2h1a.5.5,0,0,0,.5-.5V15a1,1,0,0,1,2,0v1a.5.5,0,0,0,.5.5h1a1,1,0,0,1,0,2Z" />
    </G>
  )
}