Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Export icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
pelusanchez committed Dec 19, 2023
1 parent 193b692 commit c734bbb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/icons/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './EQCIcons'
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './GenerateBlocks'
export * from './blocks'
export * from './icons'
7 changes: 7 additions & 0 deletions src/models/datasets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export enum LayoutBlockTypes {
'markdown',
'html',
'section',
'related_entries',
'table',
'thumb-markdown',
'checkitem',
Expand Down Expand Up @@ -59,6 +60,12 @@ export interface SectionBlock extends GenericBlock {
)[]
}

export interface RelatedBlock extends GenericBlock {
title: string
open: boolean
rel: string;
}

export type ImageThumb = {
url: string
alt: string
Expand Down

0 comments on commit c734bbb

Please sign in to comment.