-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffe5be5
commit af65e26
Showing
9 changed files
with
304 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
declare module '@codexteam/icons' { | ||
export type IconAddBackground = string; | ||
export type IconAddBorder = string; | ||
export type IconAlignCenter = string; | ||
export type IconAlignJustify = string; | ||
export type IconAlignLeft = string; | ||
export type IconAlignRight = string; | ||
export type IconBold = string; | ||
export type IconBrackets = string; | ||
export type IconCheck = string; | ||
export type IconChecklist = string; | ||
export type IconChevronDown = string; | ||
export type IconChevronLeft = string; | ||
export type IconChevronRight = string; | ||
export type IconChevronUp = string; | ||
export type IconClipboard = string; | ||
export type IconCollapse = string; | ||
export type IconColor = string; | ||
export type IconCopy = string; | ||
export type IconCross = string; | ||
export type IconCurlyBrackets = string; | ||
export type IconDelimiter = string; | ||
export type IconDirectionDownRight = string; | ||
export type IconDirectionLeftDown = string; | ||
export type IconDirectionRightDown = string; | ||
export type IconDirectionUpRight = string; | ||
export type IconDotCircle = string; | ||
export type IconEtcHorisontal = string; | ||
export type IconEtcVertical = string; | ||
export type IconFile = string; | ||
export type IconGift = string; | ||
export type IconGlobe = string; | ||
export type IconH1 = string; | ||
export type IconH2 = string; | ||
export type IconH3 = string; | ||
export type IconH4 = string; | ||
export type IconH5 = string; | ||
export type IconH6 = string; | ||
export type IconHeading = string; | ||
export type IconHeart = string; | ||
export type IconHidden = string; | ||
export type IconHtml = string; | ||
export type IconInstagram = string; | ||
export type IconItalic = string; | ||
export type IconLink = string; | ||
export type IconLinkedin = string; | ||
export type IconListBulleted = string; | ||
export type IconListNumbered = string; | ||
export type IconLoader = string; | ||
export type IconMarker = string; | ||
export type IconMenuSmall = string; | ||
export type IconMenu = string; | ||
export type IconPicture = string; | ||
export type IconPlay = string; | ||
export type IconPlus = string; | ||
export type IconQuestion = string; | ||
export type IconQuote = string; | ||
export type IconRedo = string; | ||
export type IconRemoveBackground = string; | ||
export type IconReplace = string; | ||
export type IconSave = string; | ||
export type IconSearch = string; | ||
export type IconStar = string; | ||
export type IconStretch = string; | ||
export type IconStrikethrough = string; | ||
export type IconTableWithHeadings = string; | ||
export type IconTableWithoutHeadings = string; | ||
export type IconTable = string; | ||
export type IconText = string; | ||
export type IconTranslate = string; | ||
export type IconTrash = string; | ||
export type IconTwitter = string; | ||
export type IconUnderline = string; | ||
export type IconUndo = string; | ||
export type IconUnlink = string; | ||
export type IconUser = string; | ||
export type IconUsersGroup = string; | ||
export type IconWarning = string; | ||
} |
Oops, something went wrong.