diff --git a/components/composition/InputButtonGroup/InputButtonGroup.stories.ts b/components/composition/InputButtonGroup/InputButtonGroup.stories.ts index d70f564..21b3427 100644 --- a/components/composition/InputButtonGroup/InputButtonGroup.stories.ts +++ b/components/composition/InputButtonGroup/InputButtonGroup.stories.ts @@ -3,6 +3,14 @@ import { html } from 'lit'; export default { component: 'diamond-input-button-group', + parameters: { + docs: { + description: { + component: + 'This composition allows for an input control to be paired with a button, handling scaling and alignment of both elements.', + }, + }, + }, }; export const InputButtonGroup: StoryObj = { @@ -25,8 +33,7 @@ export const InputButtonGroup: StoryObj = { InputButtonGroup.parameters = { docs: { description: { - story: `A composition of an input and a button, styled to look - like a single component.`, + story: `A composition of an input and a button.`, }, }, }; @@ -69,3 +76,19 @@ InputButtonGroupSelect.parameters = { }, }, }; + +export const InputButtonGroupSearch: StoryObj = { + render: () => html` + + + + + + + + + + + + `, +};