@igloo-ui/datepicker
v0.8.0
Published
Date pickers let users choose dates from a visual calendar that’s consistently applied wherever dates need to be selected.
Downloads
24
Readme
Datepicker
Date pickers let users choose dates from a visual calendar that’s consistently applied wherever dates need to be selected.
Installation
To install @igloo-ui/datepicker
in your project, you will need to run the following command using npm:
npm install @igloo-ui/datepicker
If you prefer Yarn, use the following command instead:
yarn add @igloo-ui/datepicker
Usage
Then to use the component in your code just import it!
import Datepicker from '@igloo-ui/datepicker';
const [showDatepicker, setShowDatepicker] = useState(false);
const [date, setDate] = useState('2022-09-30T00:00:00Z');
useEffect(() => {
setShowDatepicker(false);
}, [date]);
const formatedDate = new Date('2022-09-30T00:00:00Z').toLocaleDateString();
<Datepicker
ariaLabel="Event date"
placeholder="Select date"
selectedDay={date}
value={formatedDate}
isOpen={showDatepicker}
onClose={() => setShowDatepicker(false)}
onChange={(date) => setDate(date.utc)}
onFocus={() => setShowDatepicker(!showDatepicker)}
/>;