UNPKG

react-color

Version:

A Collection of Color Pickers from Sketch, Photoshop, Chrome & more

21 lines (18 loc) 511 B
import React from 'react'; import reactCSS from 'reactcss'; export var ChromePointer = function ChromePointer() { var styles = reactCSS({ 'default': { picker: { width: '12px', height: '12px', borderRadius: '6px', transform: 'translate(-6px, -1px)', backgroundColor: 'rgb(248, 248, 248)', boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)' } } }); return React.createElement('div', { style: styles.picker }); }; export default ChromePointer;