blob: 5fdec9f6ed83bbd5ff9fd3facc34338f35865694 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
const ChartIcon = () => (
<svg
width="18"
height="18"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect
x="0.5"
y="0.5"
width="17"
height="17"
rx="2.5"
fill="#EFF9F9"
stroke="#B3DADC"
/>
<rect x="8" y="4" width="2" height="10" rx="1" fill="#B3DADC" />
<rect x="12" y="10" width="2" height="4" rx="1" fill="#B3DADC" />
<rect x="4" y="6" width="2" height="8" rx="1" fill="#B3DADC" />
</svg>
);
export default ChartIcon;