-
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.
fix(icon): icon 패키지의 오류사항을 수정합니다. (#53)
- Loading branch information
1 parent
0fa8687
commit 84ab976
Showing
14 changed files
with
89 additions
and
82 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,5 @@ | ||
--- | ||
"@setaday/icon": patch | ||
--- | ||
|
||
Fix icon package issues |
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 |
---|---|---|
@@ -1,27 +1,29 @@ | ||
import type { SVGProps } from 'react'; | ||
import type { SVGProps } from "react"; | ||
|
||
const MobileIconErase = (props: SVGProps<SVGSVGElement>) => { | ||
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<g clip-path="url(#clip0_643_16164)"> | ||
<circle cx="17" cy="17" r="17" fill="#ECEEEF" /> | ||
<path | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M16.5178 23.4319L10.9234 17.5608L8.47219 19.8966C7.77797 20.5581 7.75146 21.6571 8.41298 22.3514L10.6316 24.6797L15.2083 24.6797L16.5178 23.4319Z" | ||
fill="#5B89EF" | ||
/> | ||
<path | ||
d="M10.1775 17.0892L18.3655 9.32188C19.0612 8.66191 20.1602 8.69089 20.8202 9.3866L25.1376 13.9378C25.7976 14.6335 25.7686 15.7325 25.0729 16.3925L16.8848 24.1598L10.1775 17.0892Z" | ||
fill="white" | ||
/> | ||
<path d="M19.8286 11.9653L22.6063 14.8006" stroke="#AEAEAE" stroke-width="1.21542" stroke-linecap="round" /> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_643_16164"> | ||
<rect width="34" height="34" fill="white" /> | ||
</clipPath> | ||
</defs> | ||
</svg>; | ||
return ( | ||
<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<g clipPath="url(#clip0_643_16164)"> | ||
<circle cx="17" cy="17" r="17" fill="#ECEEEF" /> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M16.5178 23.4319L10.9234 17.5608L8.47219 19.8966C7.77797 20.5581 7.75146 21.6571 8.41298 22.3514L10.6316 24.6797L15.2083 24.6797L16.5178 23.4319Z" | ||
fill="#5B89EF" | ||
/> | ||
<path | ||
d="M10.1775 17.0892L18.3655 9.32188C19.0612 8.66191 20.1602 8.69089 20.8202 9.3866L25.1376 13.9378C25.7976 14.6335 25.7686 15.7325 25.0729 16.3925L16.8848 24.1598L10.1775 17.0892Z" | ||
fill="white" | ||
/> | ||
<path d="M19.8286 11.9653L22.6063 14.8006" stroke="#AEAEAE" strokeWidth="1.21542" strokeLinecap="round" /> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_643_16164"> | ||
<rect width="34" height="34" fill="white" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
); | ||
}; | ||
|
||
export default MobileIconErase; |
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