UNPKG

@geezee/react-ui

Version:

Modern and minimalist React UI library.

13 lines (12 loc) 320 B
import React from 'react'; interface Props { width?: string; } declare const defaultProps: { width: string; }; export declare type SelectIconProps = Props & typeof defaultProps; declare const _default: React.ComponentType<Partial<{ width: string; }> & Pick<SelectIconProps, never>>; export default _default;