+ Profile
+
+ Name:
+ { /* @ts-expect-error Not supported children for `` when `bubblesVirtually` is true. */ }
+
+ { ( fills ) => {
+ return (
+ { fills }
+ );
+ } }
+
+
+
+ Age:
+ { /* @ts-expect-error Not support children for `` when `bubblesVirtually` is true. */ }
+
+ { ( fills ) => {
+ return (
+ { fills }
+ );
+ } }
+
+
+ Alice
+ 18
+
+ );
+};
+WithSlotChildren.args = {
+ ...Default.args,
+};
+
+export const WithContext: StoryFn< typeof Slot > = ( props ) => {
+ const Context = createContext< string | number >( '' );
+ const ContextFill = ( { name }: { name: string } ) => {
+ const value = useContext( Context );
+ return