Added timeline component to website

This commit is contained in:
2023-10-25 10:54:39 +01:00
parent dad56090ac
commit 083fbe1c20
22 changed files with 323 additions and 7 deletions

9
src/lib/types.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
type TimelinePosition = 'right' | 'left' | 'alternate';
type ParentPosition = 'right' | 'left';
type TimelineConfig = {
rootPosition: TimelinePosition;
};
export { TimelinePosition, ParentPosition, TimelineConfig };