29 lines
931 B
JavaScript
29 lines
931 B
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities';
|
|
import { useDrawerContext_unstable } from '../../contexts/drawerContext';
|
|
/**
|
|
* Create the state required to render DrawerFooter.
|
|
*
|
|
* The returned state can be modified with hooks such as useDrawerFooterStyles_unstable,
|
|
* before being passed to renderDrawerFooter_unstable.
|
|
*
|
|
* @param props - props from this instance of DrawerFooter
|
|
* @param ref - reference to root HTMLElement of DrawerFooter
|
|
*/ export const useDrawerFooter_unstable = (props, ref)=>{
|
|
const { scrollState } = useDrawerContext_unstable();
|
|
return {
|
|
components: {
|
|
root: 'footer'
|
|
},
|
|
root: slot.always(getIntrinsicElementProps('footer', {
|
|
ref,
|
|
role: 'none',
|
|
...props
|
|
}), {
|
|
elementType: 'footer'
|
|
}),
|
|
scrollState
|
|
};
|
|
};
|