@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
16 lines (15 loc) • 444 B
text/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;
};