UNPKG

@porsche-design-system/components-react

Version:

Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.

14 lines (13 loc) 434 B
import type { PropsWithChildren, JSX } from 'react'; import type { Theme } from './lib/types'; export declare const PorscheDesignSystemContext: import("react").Context<{ prefix?: string; theme: Theme; }>; type Props = { prefix?: string; cdn?: 'auto' | 'cn'; theme?: Theme; }; export declare const PorscheDesignSystemProvider: ({ prefix, cdn, theme, ...props }: PropsWithChildren<Props>) => JSX.Element; export {};