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 (
); } Dot.propTypes = { color: PropTypes.string, size: PropTypes.oneOf(['small', 'large']), className: PropTypes.string, }; export default Dot;