UNPKG

@dotcms/react

Version:

Official React Components library to render a dotCMS page.

23 lines (22 loc) 854 B
import { BlockProps } from '../../../models/blocks.interface'; /** * ListItem component represents a list item in a block editor. * * @param children - The content of the list item. * @returns The rendered list item element. */ export declare const ListItem: ({ children }: BlockProps) => import("react/jsx-runtime").JSX.Element; /** * Renders an ordered list component. * * @param children - The content to be rendered inside the ordered list. * @returns The ordered list component. */ export declare const OrderedList: ({ children }: BlockProps) => import("react/jsx-runtime").JSX.Element; /** * Renders a bullet list component. * * @param children - The content of the bullet list. * @returns The rendered bullet list component. */ export declare const BulletList: ({ children }: BlockProps) => import("react/jsx-runtime").JSX.Element;