@react-three/uikit-default
Version:
Default (shadcn) kit for @react-three/uikit
19 lines (18 loc) • 1.08 kB
TypeScript
import { ContainerRef, ContainerProperties } from '@react-three/uikit';
import React, { ReactNode, RefAttributes } from 'react';
export type CardProperties = ContainerProperties;
export declare const Card: (props: CardProperties & RefAttributes<ContainerRef>) => ReactNode;
export type CardHeaderProperties = ContainerProperties;
export declare const CardHeader: (props: CardHeaderProperties & RefAttributes<ContainerRef>) => ReactNode;
export type CardTitleProperties = {
children?: ReactNode;
};
export declare function CardTitle(props: CardTitleProperties): React.JSX.Element;
export type CardDescriptionProperties = {
children?: ReactNode;
};
export declare function CardDescription(props: CardDescriptionProperties): React.JSX.Element;
export type CardContentProperties = ContainerProperties;
export declare const CardContent: (props: CardContentProperties & RefAttributes<ContainerRef>) => ReactNode;
export type CardFooterProperties = ContainerProperties;
export declare const CardFooter: (props: CardFooterProperties & RefAttributes<ContainerRef>) => ReactNode;