@spaced-out/ui-design-system
Version:
Sense UI components library
17 lines • 523 B
TypeScript
import * as React from 'react';
type DayProps = {
date: string;
value: string;
filled: boolean;
hoverDay: string;
outlined: boolean;
disabled: boolean;
endOfRange: boolean;
highlighted: boolean;
startOfRange: boolean;
onClick: () => void;
onHover: () => void;
};
export declare const Day: ({ date, value, filled, onHover, onClick, disabled, hoverDay, outlined, endOfRange, highlighted, startOfRange, }: DayProps) => React.JSX.Element;
export {};
//# sourceMappingURL=Day.d.ts.map