Private
Public Access
1
0
Files
power-apps-codeapps-blog-part2/node_modules/@fluentui/react-divider/lib/components/Divider/renderDivider.js

13 lines
514 B
JavaScript

import { jsx as _jsx } from "@fluentui/react-jsx-runtime/jsx-runtime";
import { assertSlots } from '@fluentui/react-utilities';
/**
* Renders a Divider component by passing the slot props (defined in `state`) to the appropriate slots.
*/ export const renderDivider_unstable = (state)=>{
assertSlots(state);
return /*#__PURE__*/ _jsx(state.root, {
children: state.root.children !== undefined && /*#__PURE__*/ _jsx(state.wrapper, {
children: state.root.children
})
});
};