Skip to content

Commit

Permalink
Replace deprecated icon (#2414)
Browse files Browse the repository at this point in the history
<!--
  How to write a good PR title:
- Follow [the Conventional Commits
specification](https://www.conventionalcommits.org/en/v1.0.0/).
  - Give as much context as necessary and as little as possible
  - Prefix it with [WIP] while it’s a work in progress
-->

## Self Checklist

- [x] I wrote a PR title in **English** and added an appropriate
**label** to the PR.
- [x] I wrote the commit message in **English** and to follow [**the
Conventional Commits
specification**](https://www.conventionalcommits.org/en/v1.0.0/).
- [x] I [added the
**changeset**](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md)
about the changes that needed to be released. (or didn't have to)
- [x] I wrote or updated **documentation** related to the changes. (or
didn't have to)
- [x] I wrote or updated **tests** related to the changes. (or didn't
have to)
- [x] I tested the changes in various browsers. (or didn't have to)
  - Windows: Chrome, Edge, (Optional) Firefox
  - macOS: Chrome, Edge, Safari, (Optional) Firefox

## Related Issue

<!-- Please link to issue if one exists -->

<!-- Fixes #0000 -->

- None


## Summary

<!-- Please brief explanation of the changes made -->

- 더이상 사용되지 않는 아이콘을 대체합니다. 

## Details

<!-- Please elaborate description of the changes -->

- 생략

### Breaking change? (Yes/No)

<!-- If Yes, please describe the impact and migration path for users -->

- No

## References

<!-- Please list any other resources or points the reviewer should be
aware of -->

-
[스레드(internal)](https://desk.channel.io/root/threads/groups/(CT)BezierRedesign-244958/66badf423c3f6d27e23f/66badf423c3f6d27e23f)
  • Loading branch information
yangwooseong authored Aug 19, 2024
1 parent e0d1bae commit 467fd68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
BlockIcon,
CancelIcon,
CancelSmallIcon,
ChannelIcon,
ChannelBtnFilledIcon,
CheckCircleFilledIcon,
ErrorTriangleFilledIcon,
Hourglass3Icon,
Expand Down Expand Up @@ -262,7 +262,7 @@ export const UsageLinkTo: StoryObj<{}> = {
render: () => (
<Banner
variant="cobalt"
icon={ChannelIcon}
icon={ChannelBtnFilledIcon}
content="채널톡 정말 좋은 서비스에요."
hasLink
linkText="사용안내"
Expand Down
3 changes: 1 addition & 2 deletions packages/bezier-react/src/components/Icon/Icon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
BookmarkFilledIcon,
CallInProgressIcon,
ChannelBtnFilledIcon,
ChannelIcon,
CheckCircleIcon,
ChevronDownDoubleIcon,
ChevronRightIcon,
Expand Down Expand Up @@ -55,7 +54,7 @@ export default meta

export const Primary: StoryObj<IconProps> = {
args: {
source: ChannelIcon,
source: ChannelBtnFilledIcon,
size: 'm',
color: 'bg-black-darker',
},
Expand Down

0 comments on commit 467fd68

Please sign in to comment.