@kadconsulting/dry
Version:
KAD Reusable Component Library
10 lines (9 loc) • 382 B
TypeScript
import type { ReactNode } from 'react';
export declare const BackgroundWrapper: ({ children, backgroundColor, }: {
children: ReactNode;
backgroundColor: string;
}) => import("react/jsx-runtime").JSX.Element;
export declare const Surface: ({ children, backgroundColor, }: {
children: ReactNode;
backgroundColor: string;
}) => import("react/jsx-runtime").JSX.Element;