35 lines
895 B
TypeScript
35 lines
895 B
TypeScript
import React from "react";
|
|
import { Meta, Story } from "@storybook/react";
|
|
import { ExternalLink } from "../components/external-link/ExternalLink";
|
|
import { ButtonProps } from "@patternfly/react-core";
|
|
|
|
export default {
|
|
title: "External link",
|
|
component: ExternalLink,
|
|
} as Meta;
|
|
|
|
const Template: Story<ButtonProps> = (args) => <ExternalLink {...args} />;
|
|
|
|
export const WithTitle = Template.bind({});
|
|
WithTitle.args = {
|
|
title: "With title",
|
|
href: "http://test.nl",
|
|
};
|
|
|
|
export const WithoutTitle = Template.bind({});
|
|
WithoutTitle.args = {
|
|
href: "http://some-other-link.nl/super",
|
|
};
|
|
|
|
export const ApplicationLink = Template.bind({});
|
|
ApplicationLink.args = {
|
|
title: "Application link",
|
|
href: "/application/main",
|
|
};
|
|
|
|
export const DisabledLink = Template.bind({});
|
|
DisabledLink.args = {
|
|
title: "Disabled link",
|
|
href: "http://some-other-link.nl/super",
|
|
isAriaDisabled: true,
|
|
};
|