projects/commons/src/lib/elements/timeline/interfaces/timeline.interface.ts
Properties |
| color |
color:
|
Type : string
|
| Optional |
| content |
content:
|
Type : literal type
|
| header |
header:
|
Type : string
|
| Optional |
| icon |
icon:
|
Type : string
|
| Optional |
| img |
img:
|
Type : string
|
| Optional |
export interface ITimeline {
header?: string;
color?: string;
img?: string;
icon?: string;
content: {
title: string;
text: string;
};
}