File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
docs/storybook/stories/agents-ui Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import * as React from 'react' ;
22import { StoryObj } from '@storybook/react-vite' ;
33import { AgentSessionProvider } from '../../.storybook/lk-decorators/AgentSessionProvider' ;
4- import { AgentSessionStartAudioButton , type AgentSessionStartAudioButtonProps } from '@agents-ui' ;
4+ import { StartAudioButton , type StartAudioButtonProps } from '@agents-ui' ;
55
66export default {
7- component : AgentSessionStartAudioButton ,
7+ component : StartAudioButton ,
88 decorators : [ AgentSessionProvider ] ,
9- render : ( args : AgentSessionStartAudioButtonProps ) => {
9+ render : ( args : StartAudioButtonProps ) => {
1010 return (
1111 < >
1212 < p > A button will be rendered below if audio playback is blocked.</ p >
13- < AgentSessionStartAudioButton { ...args } />
13+ < StartAudioButton { ...args } />
1414 </ >
1515 ) ;
1616 } ,
@@ -30,6 +30,6 @@ export default {
3030 } ,
3131} ;
3232
33- export const Default : StoryObj < AgentSessionStartAudioButtonProps > = {
33+ export const Default : StoryObj < StartAudioButtonProps > = {
3434 args : { } ,
3535} ;
You can’t perform that action at this time.
0 commit comments