@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
14 lines (13 loc) • 410 B
TypeScript
export type AsChild = {
children: React.ReactElement;
/**
* Renders the children as a child of the component. Merges the props of the component with the props of the child.
*/
asChild: true;
} | {
children: React.ReactNode;
/**
* Renders the children as a child of the component. Merges the props of the component with the props of the child.
*/
asChild?: false;
};