Sticker Creator
This commit is contained in:

committed by
Scott Nonnenberg

parent
2df1ba6e61
commit
11d47a8eb9
34
sticker-creator/elements/LabeledInput.tsx
Normal file
34
sticker-creator/elements/LabeledInput.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import * as React from 'react';
|
||||
import * as styles from './LabeledInput.scss';
|
||||
import { Inline } from './Typography';
|
||||
|
||||
export type Props = {
|
||||
children: React.ReactNode;
|
||||
placeholder?: string;
|
||||
value?: string;
|
||||
onChange?: (value: string) => unknown;
|
||||
};
|
||||
|
||||
export const LabeledInput = React.memo(
|
||||
({ children, value, placeholder, onChange }: Props) => {
|
||||
const handleChange = React.useCallback(
|
||||
(e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
onChange(e.currentTarget.value);
|
||||
},
|
||||
[onChange]
|
||||
);
|
||||
|
||||
return (
|
||||
<label className={styles.container}>
|
||||
<Inline className={styles.label}>{children}</Inline>
|
||||
<input
|
||||
type="text"
|
||||
className={styles.input}
|
||||
placeholder={placeholder}
|
||||
value={value}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
</label>
|
||||
);
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user