Files
bruno/packages/bruno-app/src/components/RequestTabs/RequestTab/DraftTabIcon.js
2024-09-16 01:00:23 +05:30

16 lines
282 B
JavaScript

const DraftTabIcon = () => (
<svg
focusable="false"
xmlns="http://www.w3.org/2000/svg"
width="8"
height="16"
fill="#cc7b1b"
className="has-changes-icon"
viewBox="0 0 8 8"
>
<circle cx="4" cy="4" r="3" />
</svg>
);
export default DraftTabIcon;