Skip to content

Commit

Permalink
Merge pull request #28 from nebula-aac/feat/svg-removedone
Browse files Browse the repository at this point in the history
[svg] Added `RemoveDoneIcon`
  • Loading branch information
aabidsofi19 authored Aug 25, 2023
2 parents 02b9027 + 531492f commit 77b61c0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/svg/src/icons/RemoveDoneIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { FC } from "react"
import { IconProps } from "./types"

export const RemoveDoneIcon: FC<IconProps> = ({ width, height, ...props }) => {
return (
<svg
width={width}
height={height}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
{...props}
>
<path d="M0 0h24v24H0zm0 0h24v24H0V0z" fill="none" />
<path d="M1.79 12l5.58 5.59L5.96 19 .37 13.41 1.79 12zm.45-7.78L12.9 14.89l-1.28 1.28L7.44 12l-1.41 1.41L11.62 19l2.69-2.69 4.89 4.89 1.41-1.41L3.65 2.81 2.24 4.22zm14.9 9.27L23.62 7 22.2 5.59l-6.48 6.48 1.42 1.42zM17.96 7l-1.41-1.41-3.65 3.66 1.41 1.41L17.96 7z" />
</svg>
)
}

export default RemoveDoneIcon
1 change: 1 addition & 0 deletions packages/svg/src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export { default as PatternIcon } from "./PatternIcon";
// export { default as PodIcon } from "./PodIcon";
// export { default as RectangleShape } from "./RectangleShape";
export { default as RedoIcon } from "./RedoIcon";
export { default as RemoveDoneIcon } from "./RemoveDoneIcon";
export { default as ResetIcon } from "./ResetIcon";
export { default as Ring } from "./Ring";
export { default as RoundedRectangleShapeIcon } from "./RoundedRectangleShapeIcon";
Expand Down

0 comments on commit 77b61c0

Please sign in to comment.