Skip to content

Commit eb80fdd

Browse files
committed
Add dotted-circle icon
1 parent f276398 commit eb80fdd

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

images/icons/dotted-circle.svg

Lines changed: 3 additions & 0 deletions
Loading

src/components/icons/DottedCircle.tsx

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// This file was auto-generated using scripts/generate-icons.js
2+
import type { JSX } from 'preact';
3+
4+
export type DottedCircleIconProps = JSX.SVGAttributes<SVGSVGElement>;
5+
6+
/**
7+
* Icon generated from dotted-circle.svg
8+
*/
9+
export default function DottedCircleIcon(props: DottedCircleIconProps) {
10+
return (
11+
<svg
12+
xmlns="http://www.w3.org/2000/svg"
13+
width="16"
14+
height="16"
15+
fill="none"
16+
viewBox="0 0 16 16"
17+
data-component="DottedCircleIcon"
18+
{...props}
19+
>
20+
<path
21+
fill="currentColor"
22+
fill-rule="evenodd"
23+
d="M6.956.068a8 8 0 0 1 2.088 0 .889.889 0 1 1-.23 1.762 6.3 6.3 0 0 0-1.628 0 .889.889 0 0 1-.23-1.762m4.668 1.748a.89.89 0 0 1 1.247-.163c.554.426 1.05.922 1.476 1.476a.889.889 0 0 1-1.41 1.083 6.3 6.3 0 0 0-1.15-1.15.89.89 0 0 1-.163-1.246m-7.248 0c.299.39.226.948-.164 1.247a6.3 6.3 0 0 0-1.15 1.15.889.889 0 0 1-1.409-1.084A8 8 0 0 1 3.13 1.653a.89.89 0 0 1 1.247.163m10.56 4.374a.89.89 0 0 1 .996.766 8 8 0 0 1 0 2.088.889.889 0 1 1-1.762-.23 6.3 6.3 0 0 0 0-1.628.89.89 0 0 1 .766-.996m-13.872 0c.487.063.83.51.766.996a6.3 6.3 0 0 0 0 1.628.889.889 0 0 1-1.762.23 8 8 0 0 1 0-2.088.89.89 0 0 1 .996-.766m13.12 5.434c.389.3.462.857.163 1.247a8 8 0 0 1-1.476 1.476.889.889 0 0 1-1.084-1.41 6.3 6.3 0 0 0 1.15-1.15.89.89 0 0 1 1.247-.163m-12.368 0a.89.89 0 0 1 1.247.163c.331.432.718.819 1.15 1.15a.889.889 0 0 1-1.084 1.41 8 8 0 0 1-1.476-1.476.89.89 0 0 1 .163-1.247m4.374 3.312a.89.89 0 0 1 .996-.766 6.3 6.3 0 0 0 1.628 0 .889.889 0 1 1 .23 1.762 8 8 0 0 1-2.088 0 .89.89 0 0 1-.766-.996"
24+
clip-rule="evenodd"
25+
/>
26+
</svg>
27+
);
28+
}

src/components/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export { default as CollapseIcon } from './Collapse';
3131
export { default as ContrastIcon } from './Contrast';
3232
export { default as CopyIcon } from './Copy';
3333
export { default as CopyFilledIcon } from './CopyFilled';
34+
export { default as DottedCircleIcon } from './DottedCircle';
3435
export { default as DownloadIcon } from './Download';
3536
export { default as EditIcon } from './Edit';
3637
export { default as EditorLatexIcon } from './EditorLatex';

0 commit comments

Comments
 (0)