import * as React from 'react'; import { Grid, Input, Text } from '@fluentui/react-northstar'; // This object contains properties that will be applied to the input const propsForInput = { placeholder: 'Search...', role: 'checkbox' }; const propsTargettingWrapper = { placeholder: 'Wrapper placeholder...', id: 'wrapperId', role: 'presentation', }; // This object contains properties that will be applied to the wrapper const propsForWrapper = { dir: 'ltr', tabIndex: -1, styles: { padding: '5px', background: 'red' } }; const propsTargettingInput = { dir: 'rtl', tabIndex: 0, styles: { color: 'blue', background: 'yellow' }, }; const InputExampleTargeting = () => ( ); export default InputExampleTargeting;