7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
export interface ISectionTitleProps {
|
|
title: string;
|
|
description: string;
|
|
description_bold?: string;
|
|
reverseColor?: boolean;
|
|
}
|