Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Icon): rename "replay" to "reply" #2567

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/core/docs/vibe-3-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ For the complete migration guide see the [Vibe 3 Migration Guide](https://style.
## Icons

- The `Upgrade` icon has been removed, and the `Featured` icon has been renamed to `Upgrade`
- The `Replay` icon has been renamed to `Reply`

## Hooks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Skeleton, { SkeletonProps } from "../Skeleton";
import Avatar from "../../Avatar/Avatar";
import person from "./assets/person.png";
import Button from "../../Button/Button";
import { Replay, ThumbsUp } from "@vibe/icons";
import { Reply, ThumbsUp } from "@vibe/icons";
import "./Skeleton.stories.scss";
import { Flex } from "../../Flex";

Expand Down Expand Up @@ -144,7 +144,7 @@ export const UpdateInTheSystem = {
<Button className="monday-storybook-skeleton_btn" leftIcon={ThumbsUp} kind="secondary">
Like
</Button>
<Button className="monday-storybook-skeleton_btn" leftIcon={Replay} kind="secondary">
<Button className="monday-storybook-skeleton_btn" leftIcon={Reply} kind="secondary">
Reply
</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ The following components have breaking changes to their API, behavior, or style,
### Icons

- The `Upgrade` icon has been removed, and the `Featured` icon has been renamed to `Upgrade`:
- The `Replay` icon has been renamed to `Reply`

<ul>
<DiffCodeBlock
Expand Down
8 changes: 4 additions & 4 deletions packages/icons/src/iconsMetaData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1523,10 +1523,10 @@ export default [
},

{
name: "Replay",
file: "Replay.svg",
description: "Replay",
tags: "Replay, Message, Arrow",
name: "Reply",
file: "Reply.svg",
description: "Reply",
tags: "Reply, Message, Arrow",
category: [PLATFORM]
},

Expand Down
File renamed without changes