UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

45 lines (44 loc) 3.94 kB
import { Article, ArticleProps } from './components/Article'; import { Header, HeaderProps } from './components/Header/Header'; import { AccordionItem, AccordionItemProps } from './components/AccordionItem'; import { ActionBox, ActionBoxProps } from './components/ActionBox'; import { Button, ButtonProps } from './components/Button'; import { Breadcrumbs, BreadcrumbsProps } from './components/Breadcrumbs'; import { ConditionalWrapper } from './components/ConditionalWrapper'; import { VerticalNewsCardSlider, VerticalNewsCardSliderProps } from './components/VerticalNewsCardSlider'; import { Feature, FeatureProps } from './components/Feature'; import { Footer, FooterProps } from './components/Footer'; import { Grid, GridProps } from './components/Grid'; import { HeroBox, HeroBoxProps } from './components/HeroBox'; import { HeroSection, HeroSectionProps } from './components/HeroSection'; import { HorizontalNewsCard } from './components/HorizontalNewsCard'; import { ImageSlider, ImageSliderProps } from './components/ImageSlider'; import { Image, ImageProps } from './components/Image'; import { Logo, LogoProps } from './components/Logo'; import { LogoGrid, LogoGridProps } from './components/LogoGrid'; import { Person, PersonProps } from './components/Person'; import { HorizontalNewsCardListView, HorizontalNewsCardListViewProps } from './components/HorizontalNewsCardListView'; import { Pill, PillProps } from './components/Pill'; import { SubFooter, SubFooterProps } from './components/SubFooter'; import { TableOfContents, TableOfContentsProps } from './components/TableOfContents'; import { Tabs, TabsProps } from './components/Tabs'; import { Toolbar } from './components/Toolbar'; import { TopBar } from './components/TopBar'; import { VerticalNewsCard } from './components/VerticalNewsCard'; import { LinkContext } from './contexts/LinkContext'; import { MessageRoom, MessageRoomProps } from './components/MessageRoom'; import { MessageRoomList, MessageRoomListProps } from './components/MessageRoomList'; import { MessageSpace, MessageSpaceProps } from './components/MessageSpace'; import { YoutubeEmbed, YoutubeEmbedProps } from './components/YoutubeEmbed'; import { VideoSlider, VideoSliderProps } from './components/VideoSlider'; import { Prose, ProseProps } from './components/Prose'; import { RepoCard, RepoCardProps } from './components/RepoCard'; import { MiniCard, MiniCardProps } from './components/MiniCard'; import { GridCard, GridCardProps } from './components/GridCard'; import { SocialMediaIcons, SocialMediaIconsProps } from './components/SocialMediaIcons'; import { SocialMediaIcon, SocialMediaIconProps } from './components/SocialMediaIcon'; import { SocialNetworks } from './interfaces/IFooter'; import { INewsCard } from './interfaces/INews'; import { IToolbar, ITopBar } from './interfaces/IHeader'; export { AccordionItem, ActionBox, Article, Button, Breadcrumbs, ConditionalWrapper, VerticalNewsCardSlider, Feature, Footer, Grid, HeroBox, HeroSection, HorizontalNewsCard, ImageSlider, Image, Header, Logo, LogoGrid, Person, HorizontalNewsCardListView, LinkContext, Pill, SubFooter, TableOfContents, Tabs, Toolbar, TopBar, VerticalNewsCard, VideoSlider, YoutubeEmbed, MessageRoom, MessageRoomList, MessageSpace, Prose, RepoCard, MiniCard, GridCard, SocialMediaIcons, SocialMediaIcon, }; export type { ArticleProps, HeaderProps, AccordionItemProps, ActionBoxProps, ButtonProps, BreadcrumbsProps, VerticalNewsCardSliderProps, FeatureProps, FooterProps, GridProps, HeroBoxProps, SocialNetworks, HeroSectionProps, ImageSliderProps, INewsCard, ImageProps, LogoProps, LogoGridProps, PersonProps, HorizontalNewsCardListViewProps, PillProps, SubFooterProps, TableOfContentsProps, TabsProps, IToolbar, ITopBar, MessageRoomProps, MessageSpaceProps, MessageRoomListProps, YoutubeEmbedProps, VideoSliderProps, ProseProps, RepoCardProps, MiniCardProps, GridCardProps, SocialMediaIconsProps, SocialMediaIconProps, };