diff --git a/packages/edit-site/src/plugins/index.js b/packages/edit-site/src/plugins/index.js index 436907cfdc6977..f967726b94fcbf 100644 --- a/packages/edit-site/src/plugins/index.js +++ b/packages/edit-site/src/plugins/index.js @@ -11,6 +11,7 @@ import { __ } from '@wordpress/i18n'; import { registerPlugin } from '@wordpress/plugins'; import { addQueryArgs } from '@wordpress/url'; import apiFetch from '@wordpress/api-fetch'; +import { download } from '@wordpress/icons'; /** * Internal dependencies @@ -24,7 +25,7 @@ registerPlugin( 'edit-site', { apiFetch( { path: '/__experimental/edit-site/v1/export', diff --git a/packages/icons/src/index.js b/packages/icons/src/index.js index 134b1318792c58..41488cd8126945 100644 --- a/packages/icons/src/index.js +++ b/packages/icons/src/index.js @@ -50,6 +50,7 @@ export { default as currencyDollar } from './library/currency-dollar'; export { default as currencyEuro } from './library/currency-euro'; export { default as currencyPound } from './library/currency-pound'; export { default as desktop } from './library/desktop'; +export { default as download } from './library/download'; export { default as edit } from './library/edit'; export { default as external } from './library/external'; export { default as file } from './library/file'; diff --git a/packages/icons/src/library/download.js b/packages/icons/src/library/download.js new file mode 100644 index 00000000000000..56a9b00760d846 --- /dev/null +++ b/packages/icons/src/library/download.js @@ -0,0 +1,12 @@ +/** + * WordPress dependencies + */ +import { SVG, Path } from '@wordpress/primitives'; + +const download = ( + + + +); + +export default download;