12 lines
473 B
JavaScript
12 lines
473 B
JavaScript
import { getStyles as getPickerStyles } from '../CalendarPicker/CalendarPicker.styles';
|
|
export var getStyles = function (props) {
|
|
/* Return styles from the base class.
|
|
* If this component has extra styles not in the base, apply them here i.e.:
|
|
* const myStyle: IStyle = {
|
|
* display: "block"
|
|
* };
|
|
* return {...getPickerStyles(props), myStyle};
|
|
*/
|
|
return getPickerStyles(props);
|
|
};
|
|
//# sourceMappingURL=CalendarYear.styles.js.map
|