UNPKG

@fidely-ui/react

Version:

Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps

22 lines (21 loc) 1.74 kB
import type { Assign, HTMLArkProps, PolymorphicProps } from '@ark-ui/react'; import type { HTMLStyledProps } from '@fidely-ui/styled-system/types'; import { type CardVariantProps } from '@fidely-ui/styled-system/recipes'; export interface CardRootProps extends Assign<Assign<HTMLStyledProps<'div'>, PolymorphicProps>, CardVariantProps> { } export declare const CardRoot: import("react").ForwardRefExoticComponent<Omit<CardRootProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export interface CardBodyProps extends Assign<HTMLStyledProps<'div'>, PolymorphicProps> { } export declare const CardBody: import("react").ForwardRefExoticComponent<Omit<CardBodyProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export interface CardHeaderProps extends Assign<HTMLStyledProps<'div'>, PolymorphicProps> { } export declare const CardHeader: import("react").ForwardRefExoticComponent<Omit<CardHeaderProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export interface CardTitleProps extends Assign<HTMLStyledProps<'h4'>, HTMLArkProps<'h4'>> { } export declare const CardTitle: import("react").ForwardRefExoticComponent<Omit<CardTitleProps, "ref"> & import("react").RefAttributes<HTMLHeadingElement>>; export interface CardDescriptionProps extends Assign<HTMLStyledProps<'div'>, PolymorphicProps> { } export declare const CardDescription: import("react").ForwardRefExoticComponent<Omit<CardDescriptionProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export interface CardFooterProps extends Assign<HTMLStyledProps<'div'>, PolymorphicProps> { } export declare const CardFooter: import("react").ForwardRefExoticComponent<Omit<CardFooterProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;