@geist-ui/react
Version:
Modern and minimalist React UI library.
15 lines (14 loc) • 580 B
TypeScript
import React from 'react';
import { DividerAlign, SnippetTypes } from "../utils/prop-types";
export declare type DividerTypes = SnippetTypes;
interface Props {
type?: DividerTypes;
align?: DividerAlign;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type DividerProps = Props & NativeAttrs;
declare const Divider: React.ForwardRefExoticComponent<Props & NativeAttrs & {
children?: React.ReactNode;
} & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default Divider;