Skip to content

Commit

Permalink
feat(Icon): add forward icon (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisa18289 authored Dec 5, 2024
1 parent 1f82fac commit d599c28
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* eslint-disable */
/* auto-generated file */
import React, { ComponentProps, FC } from "react";
import { IconArrowRight as Tabler } from "@tabler/icons-react";
import { Icon } from "@/components/Icon";

export const IconForward: FC<Omit<ComponentProps<typeof Icon>, "children">> = (
props,
) => (
<Icon {...props}>
<Tabler />
</Icon>
);

export default IconForward;
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export { IconExternalLink } from "./IconExternalLink";
export { IconFailed } from "./IconFailed";
export { IconFile } from "./IconFile";
export { IconFilter } from "./IconFilter";
export { IconForward } from "./IconForward";
export { IconHide } from "./IconHide";
export { IconHome } from "./IconHome";
export { IconImage } from "./IconImage";
Expand Down
1 change: 1 addition & 0 deletions packages/components/src/components/Icon/icons.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ ExternalLink: ExternalLink
Failed: X
File: File
Filter: Filter
Forward: ArrowRight
Hide: EyeOff
Home: Home
Image: Photo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
IconDomain,
IconEmail,
IconExtension,
IconForward,
IconInbox,
IconInvoice,
IconMember,
Expand Down Expand Up @@ -200,4 +201,8 @@ import ColumnLayout from "@mittwald/flow-react-components/ColumnLayout";
<Label>SshKey</Label>
<IconSshKey />
</LabeledValue>
<LabeledValue>
<Label>Forward</Label>
<IconForward />
</LabeledValue>
</ColumnLayout>;

0 comments on commit d599c28

Please sign in to comment.