Skip to content

Commit 9c6750c

Browse files
committed
Add CirclePlayFill icon
1 parent ed26384 commit 9c6750c

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { SVGProps } from "react";
2+
3+
export function CirclePlayFill(props: SVGProps<SVGSVGElement>) {
4+
return (
5+
<svg
6+
height="18"
7+
width="18"
8+
viewBox="0 0 18 18"
9+
xmlns="http://www.w3.org/2000/svg"
10+
{...props}
11+
>
12+
<g fill="currentColor">
13+
<path
14+
d="M9,1C4.589,1,1,4.589,1,9s3.589,8,8,8,8-3.589,8-8S13.411,1,9,1Zm2.778,8.648l-3.65,2.129c-.118,.069-.248,.104-.378,.104-.128,0-.256-.034-.374-.101-.236-.135-.376-.378-.376-.65V6.871c0-.272,.141-.515,.376-.65,.236-.136,.517-.134,.751,.002l3.65,2.129c.233,.136,.373,.378,.373,.648s-.139,.512-.373,.648Z"
15+
fill="currentColor"
16+
/>
17+
</g>
18+
</svg>
19+
);
20+
}

packages/ui/src/icons/nucleo/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export * from "./circle-dotted";
3434
export * from "./circle-half-dotted-check";
3535
export * from "./circle-half-dotted-clock";
3636
export * from "./circle-info";
37+
export * from "./circle-play-fill";
3738
export * from "./circle-warning";
3839
export * from "./circle-xmark";
3940
export * from "./circles";

0 commit comments

Comments
 (0)