# Icon/Example

> Props: icon-example.props.txt

## Examples


### Base

```tsx
{
  render: args => <>
      {uniq_icons.map((Component, index) => <Component key={index} {...args} />)}
    </>
}
```

### With Size And Color

```tsx
{
  render: args => <>
      {uniq_icons.map((Component, index) => <Component key={index} {...args} />)}
    </>,
  args: {
    size: 20,
    color: colors.green600,
    secondaryColor: colors.green300
  }
}
```