export interface DotStyles { style?: React.CSSProperties; } export const styles: DotStyles = { style: { borderRadius: '13px', textAlign: 'center', backgroundRepeat: 'no-repeat', backgroundPosition: 'center', backgroundSize: '14px', // CSS Transitions transition: 'all .33s ease', WebkitTransition: 'all .33s ease', MozTransition: 'all .33s ease', }, };