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) • 579 B
TypeScript
import { default as React } from 'react';
import { IStyledComponent } from 'styled-components';
interface SelectProps extends React.InputHTMLAttributes<HTMLSelectElement> {
children?: React.ReactNode;
$wrapperClassName?: string;
$label?: string;
$size?: "default" | "big" | "small";
$error?: boolean;
$success?: boolean;
$fullWidth?: boolean;
}
export declare const StyledIconWrapper: IStyledComponent<"web", SelectProps>;
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
export { Select };