mirror of https://github.com/portainer/portainer
37 lines
787 B
TypeScript
37 lines
787 B
TypeScript
import { Meta } from '@storybook/react';
|
|
|
|
import { LoadingButton } from './LoadingButton';
|
|
|
|
export default {
|
|
component: LoadingButton,
|
|
title: 'Components/Buttons/LoadingButton',
|
|
} as Meta;
|
|
|
|
interface Args {
|
|
loadingText: string;
|
|
isLoading: boolean;
|
|
}
|
|
|
|
function Template({ loadingText, isLoading }: Args) {
|
|
return (
|
|
<LoadingButton loadingText={loadingText} isLoading={isLoading}>
|
|
<i className="fa fa-download" aria-hidden="true" /> Download
|
|
</LoadingButton>
|
|
);
|
|
}
|
|
|
|
Template.args = {
|
|
loadingText: 'loading',
|
|
isLoading: false,
|
|
};
|
|
|
|
export const Example = Template.bind({});
|
|
|
|
export function IsLoading() {
|
|
return (
|
|
<LoadingButton loadingText="loading" isLoading>
|
|
<i className="fa fa-download" aria-hidden="true" /> Download
|
|
</LoadingButton>
|
|
);
|
|
}
|