cornell-glue-ui
Version:
Glue UI is Cornell WebDev's centralized UI component library. It implements our design system and serves as a single source of truth for React components used within our projects.
13 lines (12 loc) • 400 B
TypeScript
import React from 'react';
export interface IShowcaseProps {
overline?: string;
name: string;
svg: React.ReactNode;
paragraphs?: string[];
link?: string;
isOpenNewTab?: boolean;
buttonText?: string;
}
export declare const Showcase: ({ overline, name, paragraphs, link, isOpenNewTab, svg, buttonText, }: IShowcaseProps) => JSX.Element;
export default Showcase;