UNPKG

@tidy-ui/card

Version:

The Card component gives your website a modern card layout, perfect for showcasing important details in a stylish box. Whether you're displaying products, music albums, movies, or hotel info, the possibilities are endless. Multiple cards can create a cool

40 lines (39 loc) 1.51 kB
/// <reference types="react" /> import { ICardFooterProps, ICardHeaderProps, ICardProps } from './types'; /** * Internal styled anchor tag * * @internal */ declare const Link: import("styled-components").StyledComponent<"a", import("@tidy-ui/commons").ITidyUITheme, {}, never>; /** * Internal CardHeader root component * * @internal */ declare const CardHeaderRoot: import("styled-components").StyledComponent<"header", import("@tidy-ui/commons").ITidyUITheme, ICardHeaderProps, never>; /** * Internal styled LaunchIcon * * @internal */ declare const LaunchIcon: import("styled-components").StyledComponent<(props: import("react").HTMLAttributes<SVGElement>) => JSX.Element, import("@tidy-ui/commons").ITidyUITheme, {}, never>; /** * Internal Card root component * * @internal */ declare const CardRoot: import("styled-components").StyledComponent<"section", import("@tidy-ui/commons").ITidyUITheme, ICardProps, never>; /** * Internal CardFooter root component * * @internal */ declare const CardFooterRoot: import("styled-components").StyledComponent<"footer", import("@tidy-ui/commons").ITidyUITheme, ICardFooterProps, never>; /** * Internal CardBody root component * * @internal */ declare const CardBodyRoot: import("styled-components").StyledComponent<"div", import("@tidy-ui/commons").ITidyUITheme, import("packages/types/dist/src").IStandardProps, never>; export { CardBodyRoot, CardFooterRoot, CardHeaderRoot, CardRoot, LaunchIcon, Link };