### Default Input Example Source: https://storybooks.fluentui.dev/react?path=%2Fdocs%2Fcomponents-input--docs A basic example of how to render a default input component. This serves as a starting point for most input use cases. ```typescript import * as React from 'react'; import { Input } from '@fluentui/react-components'; export const DefaultInput = () => ; ``` -------------------------------- ### Install Motion Components Preview Package Source: https://storybooks.fluentui.dev/react?path=%2Fdocs%2Fmotion-components-preview-introduction--docs Install the beta package for motion components. Note that APIs may change before the stable release. ```bash npm install @fluentui/react-motion-components-preview ``` -------------------------------- ### Persona Text Alignment Examples Source: https://storybooks.fluentui.dev/react?path=%2Fdocs%2Fcomponents-persona--docs Demonstrates the two text alignment options: 'start' (default) and 'center'. Use 'start' for standard alignment and 'center' for specific layout needs. ```typescript import { Persona, PresenceBadge } from '@fluentui/react-components'; ``` -------------------------------- ### Default Textarea Example Source: https://storybooks.fluentui.dev/react?path=%2Fdocs%2Fcomponents-textarea--docs A basic example of the default Textarea component. ```jsx