Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import React from 'react';
import { StoreHoursDropDownProps } from './typings';
declare class StoreHoursDropDown extends React.PureComponent<StoreHoursDropDownProps> {
static defaultProps: {
className: string;
options: {
isSelected: boolean;
label: string;
list: {
day: string;
hours: string;
}[];
}[];
};
render(): JSX.Element;
}
export { StoreHoursDropDown };
export default StoreHoursDropDown;