@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
8 lines (7 loc) • 397 B
TypeScript
import React from "react";
interface SlottedDivProps extends React.HTMLAttributes<HTMLDivElement> {
asChild?: boolean;
}
declare const SlottedDivElement: React.ForwardRefExoticComponent<SlottedDivProps & React.RefAttributes<HTMLDivElement>>;
type SlottedDivElementRef = React.ElementRef<typeof SlottedDivElement>;
export { SlottedDivElement, type SlottedDivElementRef, type SlottedDivProps };