@gechiui/icons
Version:
GeChiUI Icons package, based on dashicon.
13 lines (10 loc) • 389 B
JavaScript
/**
* GeChiUI dependencies
*/
import { Path, SVG } from '@gechiui/primitives';
const button = (
<SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<Path d="M19 6.5H5c-1.1 0-2 .9-2 2v7c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7c0-1.1-.9-2-2-2zm.5 9c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5v-7c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v7zM8 12.8h8v-1.5H8v1.5z" />
</SVG>
);
export default button;