@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
12 lines (11 loc) • 404 B
TypeScript
import React, { ComponentProps, ReactNode } from "react";
declare const StyledCard: any;
declare type StitchesButtonProps = ComponentProps<typeof StyledCard>;
export interface CardProps extends StitchesButtonProps {
/** Provide a text content for the card */
children?: ReactNode;
shadow?: boolean;
header?: string;
}
export declare const Card: React.FC<CardProps>;
export {};