@gravityforms/components
Version:
UI components for use in Gravity Forms development. Both React and vanilla js flavors.
12 lines (9 loc) • 354 B
JavaScript
import { React } from '@gravityforms/libraries';
const DataDot = ( { cx, cy, stroke } ) => {
return (
<svg x={ cx - 6 } y={ cy - 6 } width={ 12 } height={ 12 } viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="6" cy="6" r="5" stroke={ stroke } strokeWidth="2" fill="white" />
</svg>
);
};
export default DataDot;