UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

16 lines (15 loc) 624 B
import type { CardCssVariables, CardFactory, CardProps, CardStylesNames } from './Card'; import type { CardSectionProps } from './CardSection/CardSection'; export { Card } from './Card'; export { CardSection } from './CardSection/CardSection'; export type { CardProps, CardStylesNames, CardCssVariables, CardFactory, CardSectionProps }; export declare namespace Card { type Props = CardProps; type StylesNames = CardStylesNames; type CssVariables = CardCssVariables; type Factory = CardFactory; type SectionProps = CardSectionProps; namespace Section { type Props = CardSectionProps; } }