@rws-air/webcomponents
Version:
Standard Webcomponents for AIR projects
17 lines • 517 B
TypeScript
import React, { PropsWithChildren } from 'react';
interface BarProps {
/** Additional CSS classes to apply to the Bar component */
classes?: string | string[];
}
/**
* Constructs a horizontal Bar section using pre-defined Rijkswaterstaat styling
* @example
* ```jsx
* <Bar>
* <div> Some Children </div>
* </Bar>
* ```
*/
export declare const Bar: React.MemoExoticComponent<({ classes, children, ...props }: PropsWithChildren<BarProps>) => JSX.Element>;
export {};
//# sourceMappingURL=index.d.ts.map