import * as React from 'react'; import { Link, ILinkStyleProps } from '@fluentui/react-next/lib/Link'; import { Stack } from '@fluentui/react-next/lib/Stack'; import { Customizer } from '@fluentui/react-next/lib/Utilities'; const customStyles = { root: { background: 'lightblue' } }; const themedStyles = (props: ILinkStyleProps) => ({ root: { background: props.theme.palette.greenLight, }, }); const scopedSettings = { Link: { styles: customStyles } }; export const LinkThemedExample: React.FunctionComponent = () => { return ( Link styled via styles prop Link styled via styles prop with theme value Link styled via Customizer's scoped settings ); };