An icon component which accepts an svg string and renders it.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
icon |
string |
✅ | - | Icon |
size |
Size1 |
✅ | - | Size |
variant |
IconVariant |
✅ | - | Icon variant |
import { RtkIcon } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkIcon />;
}import { RtkIcon } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkIcon
icon="example"
size="md"
variant="primary"
/>
);
}