The IconRotator
is a simple component that is used to rotate an icon from a
one degrees to another.
The SVGIcon
component is used to render inline SVG icons or SVG icons in a
sprite map as an icon.
The IconProvider
component is used to override all the default icons within
react-md
with a newly defined set of icons. This is super nice since you
won't need to create new component wrappers for all the components within
react-md
if you want to switch to SVG icons instead of the default font
icons.
Gets one of the configured icons from the IconProvider
. This is probably
just for use within react-md
, but might be helpful outside if you want to
reuse the existing icon configuration for other custom components.
If te second argument is provided and it is not undefined
, that value will
be used instead of the inherited icon type.
The name of the icon you want to use.
An optional override to use instead of the inherited icon.
The overridden icon value or the inherited icon.
Generated using TypeDoc
The
FontIcon
component is used for rendering a font-icon library's icon. The default is to use thematerial-icons
library, but others can be used as well.If you are using another font icon library that does not always create icons with a perfect 1:1 scale (such as font awesome), it is recommended to use the
forceSize
andforceFontSize
props to fix the sizing issues.