@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
16 lines (12 loc) • 447 B
TypeScript
/* eslint-disable @typescript-eslint/no-empty-object-type */
import type { AkselColorRole } from "@navikt/ds-tokens/types";
// biome-ignore lint/suspicious/noEmptyInterface: Users can/will augment this interface
export interface CustomAkselColor {}
export type AkselColor = AkselColorRole | keyof CustomAkselColor;
declare global {
namespace React {
interface HTMLAttributes {
"data-color"?: AkselColor | (string & {});
}
}
}