-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SquareWithPen icon and fix WarningSign icon (#25)
Co-authored-by: pankajdwivedi <pankaj@setu.co>
- Loading branch information
1 parent
94f100a
commit 7b518b3
Showing
7 changed files
with
109 additions
and
59 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// GENERATED BY /script/build.js | ||
// DO NOT EDIT MANUALLY | ||
|
||
import * as React from "react"; | ||
import { LineIconProps } from "../../types"; | ||
import { SVGLineIconWrapper } from "../../styles"; | ||
|
||
export const SquareWithPen = React.forwardRef<SVGSVGElement, LineIconProps>( | ||
({ width = 24, height = 24, ...props }, forwardedRef) => { | ||
return ( | ||
<SVGLineIconWrapper {...props}> | ||
<svg | ||
width={width} | ||
height={height} | ||
ref={forwardedRef} | ||
id="Layer_1" | ||
data-name="Layer 1" | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<defs></defs> | ||
|
||
<path | ||
d="M20 14.66V20C20 20.5304 19.7893 21.0391 19.4142 21.4142C19.0391 21.7893 18.5304 22 18 22H4C3.46957 22 2.96086 21.7893 2.58579 21.4142C2.21071 21.0391 2 20.5304 2 20V6C2 5.46957 2.21071 4.96086 2.58579 4.58579C2.96086 4.21071 3.46957 4 4 4H9.34" | ||
className="stroke" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
fill="none" | ||
/> | ||
|
||
<path | ||
d="M18 2L22 6L12 16H8V12L18 2Z" | ||
className="stroke" | ||
fill="none" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
</SVGLineIconWrapper> | ||
); | ||
} | ||
); | ||
|
||
SquareWithPen.displayName = "SquareWithPen"; | ||
|
||
export default SquareWithPen; |
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
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