summit-kit
Version:
A React component library for building modern web applications with an earthy and outdoorsy flair.
20 lines (19 loc) • 927 B
TypeScript
import { StandardProps } from '../Types/general.ts';
/**
* Renders an article element with the "reading" class.
*
* @param props - Standard React props including children to be rendered inside the article.
* @returns A React element wrapping the children in an article with the appropriate class.
*/
export declare const Reading: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Renders a semantic HTML `<section>` element with a predefined CSS class.
*
* @param props - Standard React props, including children to be rendered inside the section.
* @returns The section element containing the provided children.
*/
export declare const Section: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
export type { FlexProps } from './Flex.tsx';
export { Flex } from './Flex.tsx';
export type { GridProps } from './Grid.tsx';
export { Grid, GridHeader, GridRow } from './Grid.tsx';