@vitus-labs/elements
Version:
Most basic react reusable components
19 lines • 546 B
TypeScript
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