FURN is a React Native based component library, so there will be a few differences in props and behaviors if you are porting components from FluentUI.
onClick
isonPress
aria-label
isaccessibilityLabel
aria-hidden
isaccessible
set to falsearia-description
has no direct equivalent, useaccessibilityHint
to give more detail on what happens when an action is invoked on a component
CSS is not available in React Native, so styling must be applied to elements directly instead of using classNames or other selectors. A good way to ensure that styles are passed through a tree is to use a ThemeProvider
. More information about our theming can be found here