UNPKG

@vitus-labs/elements

Version:
19 lines 546 B
import { type ReactNode } from 'react'; import type { VLComponent } from "../types"; export interface Props { /** * Children to be rendered within **Util** component. */ children: ReactNode; /** * Class name(s) to be added to children component. */ className?: string | string[]; /** * Style property to extend children component inline styles */ style?: Record<string, unknown>; } declare const Component: VLComponent<Props>; export default Component; //# sourceMappingURL=component.d.ts.map