UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

36 lines (33 loc) 1.08 kB
import React from 'react'; import { createExample, } from '../../services'; export default createExample([{ title: 'Icon', description: ( <p>Use the <code className="guideCode">icon</code> class instead of the <code className="guideCode">fa</code> class for FontAwesome icons. This will make it easier for us to migrate away from FontAwesome.</p> ), html: require('./icon.html'), hasDarkTheme: false, }, { title: 'Success', description: ( <p>Use this Icon to convey the successful completion of an action, e.g. filling out a form field correctly or a successful API request.</p> ), html: require('./icon_success.html'), hasDarkTheme: false, }, { title: 'Warning', description: ( <p>Use this Icon to convey an irregularity or potential problems.</p> ), html: require('./icon_warning.html'), hasDarkTheme: false, }, { title: 'Error', description: ( <p>Use this Icon to convey a failed attempt at an action, e.g. an invalid form field or an API error.</p> ), html: require('./icon_error.html'), hasDarkTheme: false, }]);