import { SpaceProps } from "styled-system"; export const scales = { SM: "sm", MD: "md", LG: "lg", } as const; export type Scales = typeof scales[keyof typeof scales]; export interface InputProps extends SpaceProps { scale?: Scales; isSuccess?: boolean; isWarning?: boolean; }