@geist-ui/react
Version:
Modern and minimalist React UI library.
10 lines (9 loc) • 395 B
TypeScript
import React from 'react';
interface Props {
inline?: boolean;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type SpacerProps = Props & NativeAttrs;
declare const Spacer: React.ForwardRefExoticComponent<Props & NativeAttrs & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default Spacer;