react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 790 B
JavaScript
import * as React from 'react';
export function SvgContao(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5.656 5.469C4.75 5.469 4 6.187 4 7.094v17.812c0 .907.75 1.625 1.656 1.625h3.719c-1.598-1.746-2.32-4.277-2.375-4.5-.238-.949-1.172-5.101-1.5-7.062a16.25 16.25 0 01-.219-2.781c0-3.583 1.864-5.715 3.063-6.72zm16.5 0c1.614 1.449 2.5 3.937 2.5 3.937L18.25 10.75s-.945-2.125-3.125-2.125c-1.188 0-3.344.832-3.344 2.969 0 1.383.485 4.273 1.125 7.031.778 3.34 1.621 5.094 3.781 5.094 3.555 0 3.532-3.532 3.532-3.532l6.437-1.437v1.563c0 3.109-2.023 5.539-2.656 6.218h2.344c.906 0 1.656-.718 1.656-1.625V7.094c0-.907-.75-1.625-1.656-1.625z" })));
}
export default SvgContao;