mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
27 lines
608 B
JavaScript
27 lines
608 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import styles from './Dot.module.css';
|
|
|
|
function Dot({ color, size, className }) {
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
<div
|
|
style={{ background: color }}
|
|
className={classNames(styles.dot, className, {
|
|
[styles.small]: size === 'small',
|
|
[styles.large]: size === 'large',
|
|
})}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Dot.propTypes = {
|
|
color: PropTypes.string,
|
|
size: PropTypes.oneOf(['small', 'large']),
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default Dot;
|