@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
14 lines (11 loc) • 297 B
text/typescript
import { createContext } from "react";
export type ExpansionCardContextProps = {
open: boolean;
toggleOpen: () => void;
size: "medium" | "small";
};
export const ExpansionCardContext = createContext<ExpansionCardContextProps>({
open: false,
toggleOpen: () => {},
size: "medium",
});