@penaprieto/design-system
Version:
Multi-brand React design system with design tokens from Figma
13 lines • 437 B
TypeScript
import { ReactNode } from 'react';
type LangProps = {
lang: 'en' | 'es';
children: ReactNode;
};
export declare const Lang: ({ lang, children }: LangProps) => import("react/jsx-runtime").JSX.Element | null;
interface LocalizedProps {
en: ReactNode;
es: ReactNode;
}
export declare const Localized: ({ en, es }: LocalizedProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Localized.d.ts.map