react-css-library
Version:
## Library Overview Developed by Marco Duarte and David Artavia, this library leverages React, CSS, and TypeScript to provide a comprehensive set of design components.
12 lines (11 loc) • 723 B
TypeScript
import React from "react";
import { IProps } from "../../types/IProps";
import "../../fonts.css";
export declare const H1: ({ style, children }: IProps) => React.JSX.Element;
export declare const H2: ({ style, children }: IProps) => React.JSX.Element;
export declare const H3: ({ style, children }: IProps) => React.JSX.Element;
export declare const H4: ({ style, children }: IProps) => React.JSX.Element;
export declare const H5: ({ style, children }: IProps) => React.JSX.Element;
export declare const H6: ({ style, children }: IProps) => React.JSX.Element;
export declare const H7: ({ style, children }: IProps) => React.JSX.Element;
export declare const TextContent: ({ style, children }: IProps) => React.JSX.Element;