### Examples
**More examples** are available on NorthStar Storybook.
```jsx
import Icon from 'aws-northstar/components/Icon';
import Inline from 'aws-northstar/layouts/Inline';
import Container from 'aws-northstar/layouts/Container';
;
```
```jsx
import Icon from 'aws-northstar/components/Icon';
import Container from 'aws-northstar/layouts/Container';
import Inline from 'aws-northstar/layouts/Inline';
;
```
```jsx
import Icon from 'aws-northstar/components/Icon';
import Container from 'aws-northstar/layouts/Container';
import Inline from 'aws-northstar/layouts/Inline';
;
```
```jsx
import Icon from 'aws-northstar/components/Icon';
import Container from 'aws-northstar/layouts/Container';
import Inline from 'aws-northstar/layouts/Inline';
;
```
```jsx
import { useState } from 'react';
import Icon from 'aws-northstar/components/Icon';
import Select from 'aws-northstar/components/Select';
import Input from 'aws-northstar/components/Input';
import Container from 'aws-northstar/layouts/Container';
import Inline from 'aws-northstar/layouts/Inline';
const variants = [
{ label: 'Filled', value: 'Filled' },
{ label: 'Outlined', value: 'Outlined' },
{ label: 'Rounded', value: 'Rounded' },
{ label: 'TwoTone', value: 'TwoTone' },
{ label: 'Sharp', value: 'Sharp' },
];
const colors = [
{ label: 'inherit', value: 'inherit' },
{ label: 'primary', value: 'primary' },
{ label: 'secondary', value: 'secondary' },
{ label: 'action', value: 'action' },
{ label: 'disabled', value: 'disabled' },
{ label: 'error', value: 'error' },
];
const DynamicLoad = () => {
const [iconName, setIconName] = useState();
const [selectedVariant, setSelectedVariant] = useState();
const [selectedColor, setSelectedColor] = useState();
return (
}
>
setIconName(name)} placeholder="icon name. eg: GitHub" />
);
};
;
```