Skip to content

Commit

Permalink
fix: key error in ThreeDotsIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
r0nz-29 committed May 2, 2023
1 parent b9a36dc commit f7851f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/primitives/Icon/Icons/ThreeDots.tsx
Expand Up @@ -4,9 +4,9 @@ import { G, Path } from '../nbSvg';

export const ThreeDotsIcon = createIcon({
viewBox: '0 0 32.055 32.055',
path: [
path: (
<G>
<Path d="M3.968,12.061C1.775,12.061,0,13.835,0,16.027c0,2.192,1.773,3.967,3.968,3.967c2.189,0,3.966-1.772,3.966-3.967 C7.934,13.835,6.157,12.061,3.968,12.061z M16.233,12.061c-2.188,0-3.968,1.773-3.968,3.965c0,2.192,1.778,3.967,3.968,3.967 s3.97-1.772,3.97-3.967C20.201,13.835,18.423,12.061,16.233,12.061z M28.09,12.061c-2.192,0-3.969,1.774-3.969,3.967 c0,2.19,1.774,3.965,3.969,3.965c2.188,0,3.965-1.772,3.965-3.965S30.278,12.061,28.09,12.061z" />
</G>,
],
</G>
),
});

0 comments on commit f7851f9

Please sign in to comment.