Skip to content

Commit 94ccad2

Browse files
committed
fix(icons): 잘못 생성된 GiftIcon 올바르게 수정
Related PR: #753
1 parent e9bb35b commit 94ccad2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Icon/generated/GiftIcon.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react'
22
import { SVGProps } from 'react'
33
import createIcon from 'Components/Icon/createIcon'
44

5-
function SvgGifIcon(props: SVGProps<SVGSVGElement>) {
5+
function SvgGiftIcon(props: SVGProps<SVGSVGElement>) {
66
return (
77
<svg
88
width="1em"
@@ -16,10 +16,10 @@ function SvgGifIcon(props: SVGProps<SVGSVGElement>) {
1616
fill="currentColor"
1717
fillRule="evenodd"
1818
clipRule="evenodd"
19-
d="M15.5 2C13.567 2 12 3.567 12 5.5C12 3.567 10.433 2 8.5 2C6.567 2 5 3.567 5 5.5C5 6.0368 5.12085 6.54537 5.33682 7H5C3.89543 7 3 7.89543 3 9V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V9C21 7.89543 20.1046 7 19 7H18.6632C18.8792 6.54537 19 6.0368 19 5.5C19 3.567 17.433 2 15.5 2ZM15.5 7C16.3284 7 17 6.32843 17 5.5C17 4.67157 16.3284 4 15.5 4C14.6716 4 14 4.67157 14 5.5V7H15.5ZM8.5 7H10V5.5C10 4.67157 9.32843 4 8.5 4C7.67157 4 7 4.67157 7 5.5C7 6.32843 7.67157 7 8.5 7ZM5 9L5 19H10V9H5ZM14 9H19V19H14V9Z"
19+
d="M15.5 2A3.5 3.5 0 0 0 12 5.5 3.5 3.5 0 1 0 5.337 7H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-.337A3.5 3.5 0 0 0 15.5 2Zm0 5A1.5 1.5 0 1 0 14 5.5V7h1.5Zm-7 0H10V5.5A1.5 1.5 0 1 0 8.5 7ZM5 9v10h5V9H5Zm9 0h5v10h-5V9Z"
2020
/>
2121
</svg>
2222
)
2323
}
2424

25-
export default createIcon(SvgGifIcon)
25+
export default createIcon(SvgGiftIcon)

0 commit comments

Comments
 (0)