Fixing account details label colors (#14315)
parent
a499d0f045
commit
13c087e2e9
@ -0,0 +1,33 @@ |
|||||||
|
import React from 'react'; |
||||||
|
import EditableLabel from '.'; |
||||||
|
|
||||||
|
export default { |
||||||
|
title: 'Components/UI/EditableLabel', |
||||||
|
id: __filename, |
||||||
|
argTypes: { |
||||||
|
onSubmit: { |
||||||
|
action: 'onSubmit', |
||||||
|
}, |
||||||
|
defaultValue: { |
||||||
|
control: 'text', |
||||||
|
}, |
||||||
|
className: { |
||||||
|
control: 'text', |
||||||
|
}, |
||||||
|
accountsNames: { |
||||||
|
control: 'array', |
||||||
|
}, |
||||||
|
}, |
||||||
|
args: { |
||||||
|
defaultValue: 'Account 3', |
||||||
|
accountsNames: ['Account 1', 'Account 2'], |
||||||
|
}, |
||||||
|
}; |
||||||
|
|
||||||
|
export const DefaultStory = (args) => ( |
||||||
|
<div style={{ position: 'relative', width: 335 }}> |
||||||
|
<EditableLabel {...args} /> |
||||||
|
</div> |
||||||
|
); |
||||||
|
|
||||||
|
DefaultStory.storyName = 'Default'; |
Loading…
Reference in new issue