@impossiblefinance/uikit
Version:
Set of UI components for impossible projects
8 lines (7 loc) • 303 B
TypeScript
import { DefaultTheme } from 'styled-components';
import { CardProps } from './types';
interface StyledCardProps extends CardProps {
theme: DefaultTheme;
}
declare const StyledCard: import("styled-components").StyledComponent<"div", DefaultTheme, StyledCardProps, never>;
export default StyledCard;