UNPKG

galileo-ui

Version:

My Design System Components

10 lines (9 loc) 298 B
import React, { ReactNode } from "react"; interface CardProps { isprimary?: boolean; backgroundColor?: string; textcolor?: string; children?: ReactNode; } export default function StkCard({ isprimary, textcolor, backgroundColor, children }: CardProps): React.JSX.Element; export {};