box-ui-elements-mlh
Version:
20 lines • 623 B
JavaScript
import * as React from 'react';
import TextInputWithCopyButton from './TextInputWithCopyButton';
import notes from './TextInputWithCopyButton.stories.md';
export var example = function example() {
return /*#__PURE__*/React.createElement(TextInputWithCopyButton, {
label: "Copy this",
value: "https://www.box.com/platform",
buttonDefaultText: "Copy",
buttonSuccessText: "Copied",
type: "url"
});
};
export default {
title: 'Components|TextInputWithCopyButton',
component: TextInputWithCopyButton,
parameters: {
notes: notes
}
};
//# sourceMappingURL=TextInputWithCopyButton.stories.js.map