@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
14 lines (13 loc) • 529 B
TypeScript
import { FC, HTMLAttributes, PropsWithChildren, RefAttributes } from "react";
//#region src/components/slot/slot.d.ts
interface SlotProps extends HTMLAttributes<HTMLElement>, RefAttributes<HTMLElement>, PropsWithChildren {}
/**
* `Slot` is a component that merges its props onto its immediate child.
*
* @see https://yamada-ui.com/docs/components/slot
*/
declare const Slot: FC<SlotProps>;
declare const Slottable: FC<PropsWithChildren>;
//#endregion
export { Slot, SlotProps, Slottable };
//# sourceMappingURL=slot.d.ts.map