@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
13 lines (10 loc) • 311 B
text/typescript
import { createContext } from "react";
import { ListProps } from "./List.types";
interface ListContextProps {
listType: Exclude<ListProps["as"], undefined>;
size: Exclude<ListProps["size"], undefined>;
}
export const ListContext = createContext<ListContextProps>({
listType: "ul",
size: "medium",
});