This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/node_modules/@radix-ui/react-slot/dist/index.d.mts
2025-01-11 09:54:09 +03:00

14 lines
546 B
TypeScript

import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
interface SlotProps extends React.HTMLAttributes<HTMLElement> {
children?: React.ReactNode;
}
declare const Slot: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLElement>>;
declare const Slottable: ({ children }: {
children: React.ReactNode;
}) => react_jsx_runtime.JSX.Element;
declare const Root: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLElement>>;
export { Root, Slot, type SlotProps, Slottable };