UNPKG

domain-gfx

Version:
18 lines (16 loc) 307 B
// @flow import {rectangle} from '../svg'; export default ( {position: {x, y}, length: width, height, color} /*: { position: {x: number, y: number}, length: number, height: number, color: ?string, } */ ) => ( rectangle({ x, y, width, height, fill: color || 'black', }) );