@styleless-ui/react
Version:
Completely unstyled, headless and accessible React UI components.
16 lines (15 loc) • 553 B
TypeScript
import * as React from "react";
import type { MergeElementProps } from "../../typings";
interface OwnProps {
/**
* The symbol which is used as separator.
*/
separatorSymbol: JSX.Element | string;
/**
* The className applied to the component.
*/
className?: string;
}
export type Props = Omit<MergeElementProps<"li", OwnProps>, "defaultChecked" | "defaultValue" | "children">;
declare const BreadcrumbSeparatorItem: (props: Props, ref: React.Ref<HTMLLIElement>) => JSX.Element;
export default BreadcrumbSeparatorItem;