# recipes/icons/entry.tsx

One file of [`recipes/icons`](/docs/recipes/icons), at commit `9a5bb24`.

```tsx
// What the browser runs: mount the page, with the icon route beside it.

import { fromUrl } from '@aweftjs/icons';
import { mount } from '@aweftjs/ui';

import { Site } from './page.tsx';

mount(document.body as never, <Site icons={fromUrl('/icons')} />);
```
