@wordpress/block-library
Version:
Block library for the WordPress editor.
11 lines (9 loc) • 443 B
JavaScript
/**
* WordPress dependencies
*/
import { Path, SVG } from '@wordpress/primitives';
export const TwitchIcon = () => (
<SVG width="24" height="24" viewBox="0 0 24 24" version="1.1">
<Path d="M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z" />
</SVG>
);