mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-18 04:54:46 +02:00
16 lines
282 B
JavaScript
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;
|