@gechiui/components
Version:
UI components for GeChiUI.
26 lines • 683 B
TypeScript
export default ConnectedElevation;
/**
* `Elevation` is a core component that renders shadow, using the library's shadow system.
*
* The shadow effect is generated using the `value` prop.
*
* @example
* ```jsx
* import {
* __experimentalElevation as Elevation,
* __experimentalSurface as Surface,
* __experimentalText as Text,
* } from '@gechiui/components';
*
* function Example() {
* return (
* <Surface>
* <Text>Code is Poetry</Text>
* <Elevation value={ 5 } />
* </Surface>
* );
* }
* ```
*/
declare const ConnectedElevation: import("../ui/context").GeChiUIComponent<"div", import("./types").Props, true>;
//# sourceMappingURL=component.d.ts.map