react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 777 B
JavaScript
import * as React from 'react';
export function SvgAddressCard(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M3 6v20h26V6zm2 2h22v16h-3.406c-.078-.137-.043-.324-.157-.438C23.06 23.184 22.523 23 22 23s-1.059.184-1.438.563c-.113.113-.078.3-.156.437h-8.812c-.078-.137-.043-.324-.156-.438-.38-.378-.915-.562-1.438-.562-.523 0-1.059.184-1.438.563-.113.113-.078.3-.156.437H5zm7 2c-2.2 0-4 1.8-4 4 0 1.113.477 2.117 1.219 2.844A5.041 5.041 0 007 21h2a3 3 0 016 0h2a5.041 5.041 0 00-2.219-4.156C15.523 16.117 16 15.114 16 14c0-2.2-1.8-4-4-4zm0 2c1.117 0 2 .883 2 2s-.883 2-2 2-2-.883-2-2 .883-2 2-2zm7 1v2h6v-2zm0 4v2h6v-2z" })));
}
export default SvgAddressCard;