summit-kit
Version:
A React component library for building modern web applications with an earthy and outdoorsy flair.
56 lines (55 loc) • 2.93 kB
TypeScript
import { StandardProps } from '../Types/general.tsx';
/**
* Functional component that renders a styled <blockquote> element.
*
* @param props - StandardProps object containing:
* - `classes` (optional): An array of additional CSS class names to apply.
* - `children`: The content to be rendered inside the blockquote.
* @returns A <blockquote> element with combined default and custom classes, and the provided children.
*/
export declare const Quote: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Functional component that renders a styled `<p>` (paragraph) element.
*
* @param props - StandardProps object containing:
* - `classes` (optional): An array of additional CSS class names to apply.
* - `children`: The content to be rendered inside the paragraph.
* @returns A `<p>` element with combined default and custom classes, and the provided children.
*/
export declare const P: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Functional component that renders a styled <span> element.
*
* @param props - StandardProps object containing:
* - `classes` (optional): An array of additional CSS class names to apply.
* - `children`: The content to be rendered inside the span.
* @returns A <span> element with combined default and custom classes, and the provided children.
*/
export declare const Span: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Functional component that renders a styled <ol> (ordered list) element.
*
* @param props - StandardProps object containing:
* - `classes` (optional): An array of additional CSS class names to apply.
* - `children`: The content to be rendered inside the ordered list.
* @returns An <ol> element with combined default and custom classes, and the provided children.
*/
export declare const Ol: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Functional component that renders a styled <ul> (unordered list) element.
*
* @param props - StandardProps object containing:
* - `classes` (optional): An array of additional CSS class names to apply.
* - `children`: The content to be rendered inside the unordered list.
* @returns A <ul> element with combined default and custom classes, and the provided children.
*/
export declare const Ul: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;
/**
* Renders a styled `<li>` (list item) element with optional custom classes and children.
*
* @param props - The standard properties for the component.
* @param props.classes - An optional array of additional CSS class names to apply to the `<li>` element.
* @param props.children - The content to be rendered inside the `<li>` element.
* @returns A React list item element with the specified classes and children.
*/
export declare const Li: (props: StandardProps) => import("react/jsx-runtime").JSX.Element;