Skip to content

Commit 65bdb7f

Browse files
committed
fix props ordering
1 parent bea9198 commit 65bdb7f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/gamut/src/Form/inputs/Input.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export type InputProps = InputHTMLAttributes<HTMLInputElement> &
2929
*/
3030
activated?: boolean;
3131
className?: string;
32-
/**
33-
* [The for/id string of a label or labelable form-related element](https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement/htmlFor). The outer FormGroup or FormLabel should have an identical string as the inner FormElement for accessibility purposes.
34-
*/
35-
placeholder?: string;
3632
/**
3733
* Setting this prop to 'small' reduces the padding of the input component. If omitted, the default padding will be used.
3834
*/
3935
inputSize?: 'small';
36+
/**
37+
* [The for/id string of a label or labelable form-related element](https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement/htmlFor). The outer FormGroup or FormLabel should have an identical string as the inner FormElement for accessibility purposes.
38+
*/
39+
placeholder?: string;
4040
type?: string;
4141
valid?: boolean;
4242
};

0 commit comments

Comments
 (0)