Skip to content
Snippets Groups Projects
Budget.web.js 1.07 KiB
/* This file is auto-generated, do not touch! Please edit the SVG file instead. */
import React from 'react';

import { css } from 'glamor';

function Budget({ width, height, style, color = 'black', ...props }) {
  return (
    <svg
      width={width}
      height={height}
      {...props}
      {...css(style)}
      viewBox="0 0 20 20"
      version="1.1"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        fill={color}
        className="path"
        d="M19.1,3h-4l-0.7-2.3c-0.2-0.5-0.7-0.8-1.2-0.7L0.7,3.6C0.1,3.8-0.2,4.3,0,4.9l4.1,14.4c0.1,0.4,0.5,0.7,1,0.7h0h0h14   c0.6,0,1-0.4,1-1V4C20.1,3.5,19.6,3,19.1,3z M12.7,2.2L13,3H10L12.7,2.2z M4.1,4.7v7.2L2.2,5.3L4.1,4.7z M18.1,18h-12V5   c4.4,0,7.6,0,12,0V18z"
      />
      <path
        fill={color}
        className="path"
        d="M8.1,9c0,0.6,0.4,1,1,1h6c0.6,0,1-0.4,1-1s-0.4-1-1-1h-6C8.5,8,8.1,8.4,8.1,9z"
      />
      <path
        fill={color}
        className="path"
        d="M15.1,13h-6c-0.6,0-1,0.4-1,1s0.4,1,1,1h6c0.6,0,1-0.4,1-1S15.6,13,15.1,13z"
      />
    </svg>
  );
}

export default Budget;