@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
18 lines (17 loc) • 540 B
TypeScript
import * as React from 'react';
import { usePreviewCardRoot } from './usePreviewCardRoot.js';
/**
* Groups all parts of the preview card.
* Doesn’t render its own HTML element.
*
* Documentation: [Base UI Preview Card](https://base-ui.com/react/components/preview-card)
*/
declare const PreviewCardRoot: React.FC<PreviewCardRoot.Props>;
declare namespace PreviewCardRoot {
interface State {
}
interface Props extends usePreviewCardRoot.Parameters {
children?: React.ReactNode;
}
}
export { PreviewCardRoot };