-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #807 from illacloud/beta
feat: ✨ add icon
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { createIcon } from "../create-icon" | ||
|
||
export const MinimizeIcon = createIcon({ | ||
title: "MinimizeIcon", | ||
viewBox: "0 0 16 16", | ||
path: ( | ||
<> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M9.75 8.5C9.05964 8.5 8.5 9.05964 8.5 9.75V13.25C8.5 13.6642 8.83579 14 9.25 14C9.66421 14 10 13.6642 10 13.25V11.0607L12.7197 13.7803C13.0126 14.0732 13.4874 14.0732 13.7803 13.7803C14.0732 13.4874 14.0732 13.0126 13.7803 12.7197L11.0607 10H13.25C13.6642 10 14 9.66421 14 9.25C14 8.83579 13.6642 8.5 13.25 8.5H9.75Z" | ||
fill="currentColor" | ||
/> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M6.25 7.5C6.94036 7.5 7.5 6.94036 7.5 6.25V2.75C7.5 2.33579 7.16421 2 6.75 2C6.33579 2 6 2.33579 6 2.75V4.93934L3.28033 2.21967C2.98744 1.92678 2.51256 1.92678 2.21967 2.21967C1.92678 2.51256 1.92678 2.98744 2.21967 3.28033L4.93934 6H2.75C2.33579 6 2 6.33579 2 6.75C2 7.16421 2.33579 7.5 2.75 7.5H6.25Z" | ||
fill="currentColor" | ||
/> | ||
</> | ||
), | ||
}) | ||
|
||
MinimizeIcon.displayName = "MinimizeIcon" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters