Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 411 Bytes

Readme.md

File metadata and controls

22 lines (18 loc) · 411 Bytes

Icons

This library provides you with a selection of icons to use in your Gutenberg applications.

  • aiAssistantIcon
  • origamiPlane
  • speakTone
import { Icon } from '@wordpress/components';
import { aiAssistantIcon } from '@automattic/jetpack-ai-client';

function YourComponent() {
  // ...
  return (
    <div>
      // Your code here...
      <Icon icon={ aiAssistantIcon } />
    </div>
  );
}