mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
import React from 'react';
|
|
|
|
const Dot = ({ size = 16 }) => {
|
|
return (
|
|
<div
|
|
className="bg-black-30 br-pill"
|
|
style={{
|
|
height: `${size}px`,
|
|
width: `${size}px`,
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Dot;
|