export interface IShowHideProps { /** * a fill color for the svg of the copy icon */ color?: string; /** * callback function when the button is opened or closed */ onChange: (isOpen: boolean) => void; /** * set the icon to be open or closed eye */ isOpen?: boolean; /** * sets the size of the copy icon */ size?: number; } //# sourceMappingURL=types.d.ts.map