xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
17 lines • 583 B
TypeScript
import React from 'react';
import 'react-resizable/css/styles.css';
interface ResizableBentoCardProps {
children: React.ReactNode;
defaultWidth?: number;
defaultHeight?: number;
minWidth?: number;
minHeight?: number;
maxWidth?: number;
maxHeight?: number;
isResizable?: boolean;
}
declare const ResizableBentoCard: React.FC<ResizableBentoCardProps>;
declare const ResizableBentoLayout: () => import("react/jsx-runtime").JSX.Element;
export default ResizableBentoCard;
export { ResizableBentoLayout };
//# sourceMappingURL=resizable-bento-card.d.ts.map