import { useRangeKnob } from '@fluentui/docs-components'; import { Alert } from '@fluentui/react-northstar'; import * as React from 'react'; import { ScreencastIcon } from '@fluentui/react-icons-northstar'; const AlertExampleWidth = () => { const [width] = useRangeKnob({ name: 'width', min: '350px', max: '800px', initialValue: '500px', step: '10px', }); return (
} />
); }; export default AlertExampleWidth;