design-system-simplefi
Version:
Design System for SimpleFi Applications
17 lines • 663 B
JavaScript
import React from 'react';
import SortButton from './SortButton';
export default {
title: 'components/SortButton',
component: SortButton,
};
var SortButtonInactive = function () {
return React.createElement(SortButton, { direction: null, onClick: function () { } });
};
export var InactiveSortButton = SortButtonInactive.bind({});
export var AscSortButton = function () {
return React.createElement(SortButton, { direction: "ASC", onClick: function () { } });
};
export var DescSortButton = function () {
return React.createElement(SortButton, { direction: "DESC", onClick: function () { } });
};
//# sourceMappingURL=SortButton.stories.js.map