Skip to Content
⚠️ Neuron is our internal UI component library. For internal use only.
DocumentationComponentsIconButton

IconButton

The IconButton component allows you to render an interactive icon at one of the standard [[IconSize]]s.

To browse icons available for use through this component, visit the Icons Reference.

How to Use

... local Neuron = require(Packages.Neuron) local IconButton = Neuron.IconButton local IconSize = Neuron.Enums.IconSize ... return React.createElement(IconButton, { size = IconSize.Medium, icon = "magnifying-glass", })
Last updated on