### Basic Dialog Component Source: https://context7_llms This example shows how to create a basic modal dialog using Dialog, DialogTrigger, and DialogContent. It includes a title, description, and a close button, demonstrating fundamental dialog structure. ```tsx import { Dialog, DialogTrigger, DialogClose, DialogContent } from './Dialog'; import { Button } from '../Button/Button'; import { Typography } from '../Typography/Typography'; This is the content of the dialog. ``` -------------------------------- ### Basic DatePicker Component Source: https://context7_llms This example demonstrates a basic, controlled DatePicker component. It includes a label and placeholder text, and its state is managed via the value and onChange props. ```tsx import { useState } from 'react'; import { DatePicker } from './DatePicker'; const DefaultRender = () => { const [date, setDate] = useState(null); return ; }; ``` -------------------------------- ### Basic Avatar Component Source: https://context7_llms This example shows the basic usage of the Avatar component, which displays an image from a src URL and provides a text fallback (e.g., user initials) if the image fails to load. ```tsx import { Avatar } from './Avatar'; ``` -------------------------------- ### Basic Select Component Source: https://context7_llms The Select component provides a dropdown menu for selecting one option from a list. This example shows an 'outlined' variant. ```tsx import { useState } from 'react'; import { Select } from './Select'; const OutlinedSelect = () => { const [value, setValue] = useState(''); const fruitOptions = [ { value: 'apple', label: 'Apple' }, { value: 'banana', label: 'Banana' }, ]; return (