ToolJet/frontend/src/_ui/Icon/solidIcons/Overline.jsx
Kiran Ashok 41bce67b1d
hotfix : Console throwing error / warnings related to svgs (#8895)
* fix : fix fill rule clip rule etc to camelcase

* fix : svg width and height made to 100% instead of auto

* fix :: few more svg height and width change in editor

* remove logs
2024-02-22 16:52:54 +05:30

14 lines
1 KiB
JavaScript

import React from 'react';
const Overline = ({ fill = '#C1C8CD', width = '25', className = '', viewBox = '0 0 25 25' }) => (
<svg xmlns="http://www.w3.org/2000/svg" width={width} height={width} viewBox="0 0 10 12" fill="none">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M5.15369 3.49807C5.08576 3.33504 4.92646 3.22884 4.74984 3.22884C4.57323 3.22884 4.41393 3.33504 4.346 3.49807L1.42933 10.4981C1.3364 10.7211 1.44187 10.9773 1.66491 11.0702C1.88795 11.1631 2.14409 11.0576 2.23702 10.8346L3.09707 8.77051H6.40262L7.26266 10.8346C7.3556 11.0576 7.61174 11.1631 7.83478 11.0702C8.05782 10.9773 8.16329 10.7211 8.07036 10.4981L5.15369 3.49807ZM6.03804 7.89551L4.74984 4.80384L3.46165 7.89551H6.03804ZM0.229004 1.33301C0.229004 1.09138 0.424879 0.895508 0.666504 0.895508H8.83317C9.07479 0.895508 9.27067 1.09138 9.27067 1.33301C9.27067 1.57463 9.07479 1.77051 8.83317 1.77051H0.666504C0.424879 1.77051 0.229004 1.57463 0.229004 1.33301Z"
fill={fill}
/>
</svg>
);
export default Overline;