UNPKG

svg-text

Version:

Utilities for working with SVG, including SvgText for multiline text.

11 lines (9 loc) 338 B
import SvgText from './SvgText'; import { createElement } from './svg'; import * as math from './math'; import * as keys from './keys'; import * as text from './text'; import * as style from './style'; import assign from 'lodash.assign'; export const SvgUtil = assign({ createElement }, math, keys, text, style); export default SvgText;