Skip to content

Commit

Permalink
🍱 Add wifi icon
Browse files Browse the repository at this point in the history
  • Loading branch information
fredk3 committed Apr 4, 2024
1 parent 4825a35 commit ebff38a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/web/ui/icon-svgs/Wifi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions apps/web/ui/icons/Wifi.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgWifi = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
fill="currentColor"
fillRule="evenodd"
d="M5.99 4.93a.75.75 0 0 1 0 1.06A8.471 8.471 0 0 0 3.5 12c0 2.348.95 4.472 2.49 6.011a.75.75 0 0 1-1.061 1.06A9.971 9.971 0 0 1 2 12.002 9.971 9.971 0 0 1 4.929 4.93a.75.75 0 0 1 1.06 0Zm12.02 0a.75.75 0 0 1 1.061 0A9.971 9.971 0 0 1 22 12a9.971 9.971 0 0 1-2.929 7.072.75.75 0 0 1-1.06-1.06A8.471 8.471 0 0 0 20.5 12c0-2.348-.95-4.472-2.49-6.01a.75.75 0 0 1 0-1.061ZM8.897 7.837a.75.75 0 0 1 0 1.06 4.373 4.373 0 0 0-1.286 3.104c0 1.212.49 2.308 1.286 3.103a.75.75 0 0 1-1.061 1.06 5.873 5.873 0 0 1-1.725-4.163c0-1.626.66-3.1 1.725-4.164a.75.75 0 0 1 1.06 0Zm6.206 0a.75.75 0 0 1 1.061 0A5.873 5.873 0 0 1 17.89 12c0 1.626-.66 3.099-1.725 4.164a.75.75 0 0 1-1.06-1.06A4.372 4.372 0 0 0 16.388 12c0-1.212-.49-2.309-1.286-3.104a.75.75 0 0 1 0-1.06ZM10.5 12a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"
clipRule="evenodd"
/>
</svg>
);
export default SvgWifi;
1 change: 1 addition & 0 deletions apps/web/ui/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,5 @@ export { default as Undo } from "./Undo";
export { default as UserOff } from "./UserOff";
export { default as UserOn } from "./UserOn";
export { default as Warning } from "./Warning";
export { default as Wifi } from "./Wifi";
export { default as XCircle } from "./XCircle";

0 comments on commit ebff38a

Please sign in to comment.