13 lines
499 B
JavaScript
13 lines
499 B
JavaScript
/**
|
|
* @internal
|
|
* Internal reference for the render function
|
|
*/ export const SLOT_RENDER_FUNCTION_SYMBOL = Symbol.for('fui.slotRenderFunction');
|
|
/**
|
|
* @internal
|
|
* Internal reference for the render function
|
|
*/ export const SLOT_ELEMENT_TYPE_SYMBOL = Symbol.for('fui.slotElementType');
|
|
/**
|
|
* @internal
|
|
* Internal cache of the original className prop for the slot, before being modified by the useStyles hook.
|
|
*/ export const SLOT_CLASS_NAME_PROP_SYMBOL = Symbol.for('fui.slotClassNameProp');
|