box-ui-elements-mlh
Version:
24 lines (20 loc) • 544 B
JavaScript
// @flow
import * as React from 'react';
import TextInputWithCopyButton from './TextInputWithCopyButton';
import notes from './TextInputWithCopyButton.stories.md';
export const example = () => (
<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,
},
};