cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
15 lines (14 loc) • 719 B
TypeScript
import { default as React } from 'react';
import { Theme } from './utils';
interface SelectProps extends React.InputHTMLAttributes<HTMLSelectElement> {
children?: React.ReactNode;
$label?: string;
$size?: "default" | "big";
$error?: boolean;
$success?: boolean;
$fullWidth?: boolean;
theme?: Theme;
}
export declare const StyledIconWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, SelectProps>> & string;
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
export { Select };