@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.
11 lines (10 loc) • 348 B
TypeScript
import type { JSX, PropsWithChildren } from 'react';
export declare const PorscheDesignSystemContext: import("react").Context<{
prefix?: string;
}>;
type Props = {
prefix?: string;
cdn?: 'auto' | 'cn';
};
export declare const PorscheDesignSystemProvider: ({ prefix, cdn, ...props }: PropsWithChildren<Props>) => JSX.Element;
export {};