@spaced-out/ui-design-system
Version:
Sense UI components library
14 lines • 398 B
TypeScript
import type { Flow } from 'flow-to-typescript-codemod';
type ClassNames = Readonly<{
wrapper?: string;
title?: string;
}>;
export type TextTileProps = {
header?: string;
iconName?: string;
classNames?: ClassNames;
description?: string;
};
export declare const TextTile: Flow.AbstractComponent<TextTileProps, HTMLDivElement>;
export {};
//# sourceMappingURL=TextTile.d.ts.map