-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
438 additions
and
355 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
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
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
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,45 @@ | ||
import * as React from 'react'; | ||
|
||
interface ILeftIconProps { | ||
style?: React.CSSProperties; | ||
} | ||
|
||
const LeftIcon: React.FC<ILeftIconProps> = ({ style = {} }) => { | ||
const { color = '#F97108', fontSize = '16px' } = style; | ||
|
||
return ( | ||
<svg width="375" height="292" xmlns="http://www.w3.org/2000/svg"> | ||
<g> | ||
<path | ||
id="svg_1" | ||
d="m-85.6,386.3l-0.4,-0.3l0.2,0.2c0.1,0 0.1,0.1 0.2,0.1zm-4,-3.8l-0.3,-0.3c0.1,0 0.2,0.1 0.3,0.3c0,-0.1 0,-0.1 0,0z" | ||
/> | ||
<path | ||
id="svg_2" | ||
d="m-89.9,382.2c-1.9,-1.8 -3.9,-3.6 -5.8,-5.3c2,1.8 4.1,3.7 6,5.6c0,-0.2 -0.1,-0.3 -0.2,-0.3zm1.4,1.3c-0.4,-0.3 -0.7,-0.7 -1.1,-1l-0.1,-0.1c0.4,0.4 0.8,0.7 1.2,1.1z" | ||
/> | ||
<path | ||
id="svg_3" | ||
d="m-87.8,384.2l-1.8,-1.7c0.4,0.3 0.7,0.7 1.1,1c0.2,0.2 0.5,0.4 0.7,0.7zm1.8,1.8l-1.7,-1.6l0.5,0.5c0.5,0.3 0.9,0.7 1.2,1.1z" | ||
/> | ||
<path | ||
id="svg_4" | ||
d="m-87.7,384.2s-0.1,0 0,0c-0.3,-0.3 -0.6,-0.5 -0.8,-0.7c0.3,0.3 0.5,0.5 0.8,0.7zm1.9,1.9l-0.2,-0.2l-1.1,-1.1c0.4,0.5 0.9,0.9 1.3,1.3zm1.4,1.4l-1.2,-1.2l-0.2,-0.2l1.4,1.4z" | ||
/> | ||
<path id="svg_5" d="m-87.6,384.3l-0.2,-0.2c0,0.1 0.1,0.1 0.2,0.2c-0.1,0 -0.1,0 0,0z" /> | ||
<path | ||
id="svg_6" | ||
d="m-87.1,384.9l-0.5,-0.5l-0.1,-0.1l0.6,0.6zm3.1,3l-1.6,-1.6l1.2,1.2l0.4,0.4zm0.1,0.1l-0.5,-0.5c0.1,0.2 0.3,0.3 0.5,0.5z" | ||
/> | ||
<path id="svg_7" d="m-83.8,388.1l-0.2,-0.2l0.2,0.2c-0.1,-0.1 0,0 0,0z" /> | ||
<path | ||
stroke="null" | ||
id="svg_8" | ||
d="m-21.66942,324l-0.30515,-0.37448l-0.02543,-0.03121c0.10172,0.15603 0.22886,0.28086 0.33058,0.40569zm45.79755,-57.70111c-3.40748,13.01318 -11.62103,22.9681 -21.74176,27.33703l91.21366,0c-10.42587,-14.82316 -24.99666,-25.40222 -42.00863,-28.71013c-9.33243,-1.80999 -18.51228,-1.27947 -27.15812,1.24827l-0.30515,0.12483l0.10172,-0.40569c0.48315,-1.96602 0.89001,-3.99445 1.1443,-6.05409c2.84804,-22.15673 -8.64584,-43.03398 -26.03925,-48.33911l0,68.99792c7.3744,-6.64702 15.76595,-11.51526 24.79323,-14.19903z" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default LeftIcon; |
Oops, something went wrong.