@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
11 lines (9 loc) • 337 B
TypeScript
import { default as React } from 'react';
interface StepCardComponentProps {
icon: React.ReactNode;
title: React.ReactNode;
subtitle?: React.ReactNode;
isHighlighted?: boolean;
}
export declare const StepCardComponent: ({ icon, title, subtitle, isHighlighted, }: StepCardComponentProps) => React.JSX.Element;
export {};