@wordpress/block-library
Version:
Block library for the WordPress editor.
11 lines (9 loc) • 338 B
JavaScript
/**
* WordPress dependencies
*/
import { Path, SVG } from '@wordpress/primitives';
export const FlickrIcon = () => (
<SVG width="24" height="24" viewBox="0 0 24 24" version="1.1">
<Path d="M6.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5S9.25,7,6.5,7z M17.5,7c-2.75,0-5,2.25-5,5s2.25,5,5,5s5-2.25,5-5 S20.25,7,17.5,7z" />
</SVG>
);