We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c7efb2 + bdd64ea commit aee7cd8Copy full SHA for aee7cd8
src/components/modalInput/CardInput.tsx
@@ -7,7 +7,6 @@ export interface CardInputProps {
7
placeholder?: string;
8
hasButton?: boolean;
9
className?: string;
10
- small?: boolean;
11
onTextChange: (value: string) => void;
12
onButtonClick: () => void;
13
}
@@ -19,7 +18,6 @@ export default function CardInput({
19
18
hasButton = false,
20
onButtonClick = () => {},
21
className = "",
22
- small = false,
23
}: CardInputProps) {
24
const textareaRef = useRef<HTMLTextAreaElement | null>(null);
25
0 commit comments