aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
22 lines • 746 B
TypeScript
/**
* ImageListItemBar Component
*
* A title bar for an ImageListItem with glass morphism styling.
*/
import React from 'react';
import { ImageListItemBarProps } from './types';
/**
* ImageListItemBar Component
*
* A title bar for an ImageListItem.
*/
declare const ImageListItemBar: React.ForwardRefExoticComponent<ImageListItemBarProps & React.RefAttributes<HTMLDivElement>>;
/**
* GlassImageListItemBar Component
*
* Glass variant of the ImageListItemBar component.
*/
declare const GlassImageListItemBar: React.ForwardRefExoticComponent<ImageListItemBarProps & React.RefAttributes<HTMLDivElement>>;
export default ImageListItemBar;
export { ImageListItemBar, GlassImageListItemBar };
//# sourceMappingURL=ImageListItemBar.d.ts.map