From 70b4e5c311999501cd6eff632ddbcac6e75ff035 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 14 Apr 2022 19:42:51 +0200 Subject: chore: add a SearchForm component --- src/components/organisms/forms/search-form.tsx | 57 ++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 src/components/organisms/forms/search-form.tsx (limited to 'src/components/organisms/forms/search-form.tsx') diff --git a/src/components/organisms/forms/search-form.tsx b/src/components/organisms/forms/search-form.tsx new file mode 100644 index 0000000..351d93c --- /dev/null +++ b/src/components/organisms/forms/search-form.tsx @@ -0,0 +1,57 @@ +import Button from '@components/atoms/buttons/button'; +import Form from '@components/atoms/forms/form'; +import MagnifyingGlass from '@components/atoms/icons/magnifying-glass'; +import LabelledField, { + LabelledFieldProps, +} from '@components/molecules/forms/labelled-field'; +import { useState, VFC } from 'react'; +import { useIntl } from 'react-intl'; +import styles from './search-form.module.scss'; + +export type SearchFormProps = Pick; + +const SearchForm: VFC = ({ hideLabel }) => { + const intl = useIntl(); + const fieldLabel = intl.formatMessage({ + defaultMessage: 'Search for:', + description: 'SearchForm: field accessible label', + id: 'X8oujO', + }); + const buttonLabel = intl.formatMessage({ + defaultMessage: 'Search', + description: 'SearchForm: button accessible name', + id: 'WMqQrv', + }); + + const [value, setValue] = useState(''); + + const submitHandler = () => { + return; + }; + + return ( +
+ + + + ); +}; + +export default SearchForm; -- cgit v1.2.3