14 more icons have been added to the list, and some pre built CSS classes to perform various functions like, rotate, animate and add border to the icons.
To use an icon, add the `<box-icon>` element to the location where the icon should be displayed:
```html
<box-iconname="hot"></box-icon>
```
The `<box-icon>` custom element supports the following attributes:
```html
<box-icon
name="adjust|alarms|etc...."
color="blue|red|etc..."
size="xs|sm|md|lg|cssSize"
rotate="90|180|270"
flip="horizontal|vertical"
shape="square|circle"
animation="spin|tada|etc..."
></box-icon>
```
-`name` : (REQUIRED) the name of the icon to be displayed
-`color`: A color for the icon.
-`size`: The size for the icon. It supports one of two types of values:
- One of the followign shortcuts: `xs`, `sm`, `md`, `lg`
- A css unit size (ex. `60px`)
-`rotate`: one of the following values: `90`, `180`, `270`
-`flip`: one of the following values: `horizontal`, `vertical`
-`shape`: one of the following values: `square`, `circle`
-`animation`: One of the following values: `spin`, `tada`, `flashing`, `burst`, `fade-left`, `fade-right`, `spin-hover`, `tada-hover`, `flashing-hover`, `burst-hover`, `fade-left-hover`, `fade-right-hover`