import React from 'react'; import ls from './SketcherToolbar.less'; import cx from 'classnames'; import {SketcherActionButton} from "./SketcherActionButton"; export function SketcherToolbar({actions, horizontal=false, compact}) { return
{actions.map((action, index) => { if (action === '-') { return
} return })}
; }