@geist-ui/react
Version:
Modern and minimalist React UI library.
12 lines (11 loc) • 439 B
TypeScript
import React from 'react';
interface Props {
value?: number;
limit?: number;
color?: string;
className?: string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type CapacityProps = Props & NativeAttrs;
declare const Capacity: React.ForwardRefExoticComponent<Props & NativeAttrs & import("../use-scaleable").ScaleableProps & React.RefAttributes<unknown>>;
export default Capacity;