Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / StoreHoursDropDown / StoreHoursDropDown.d.ts
Size: Mime:
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;