TITLE: Basic Alert Component Usage DESCRIPTION: This snippet demonstrates the default usage of the Alert component to display a brief, important message. By default, it uses the 'info' severity and 'standard' variant. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Alert/Alert.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Alert } from './Alert'; This is an informational alert — check it out! TITLE: Alert Component with Various Severities DESCRIPTION: This example showcases the Alert component with all available severity levels: 'info', 'success', 'warning', and 'error'. Each severity level applies a distinct color scheme to communicate the nature of the message. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Alert/Alert.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Alert } from './Alert';
This is an info alert — provides neutral information to users. This is a success alert — indicates a successful action or positive outcome. This is a warning alert — warns users about potential issues or important information. This is an error alert — indicates an error has occurred that needs attention.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Alert Component with Different Visual Variants DESCRIPTION: This snippet demonstrates the three visual variants of the Alert component: 'standard' (subtle background), 'filled' (solid background), and 'outlined' (bordered). These variants allow for different visual emphasis. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Alert/Alert.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Alert } from './Alert';
Standard variant with subtle background color Filled variant with solid background color Outlined variant with border and transparent background
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Alert Component with an Action Button DESCRIPTION: This example shows how to add an interactive element, such as a Button, to an Alert component using the action prop. This is useful for providing users with a direct way to respond to the alert. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Alert/Alert.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Alert } from './Alert'; import { Button } from '../Button'; Extend } /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Dismissible Alert Component DESCRIPTION: This example demonstrates how to make an Alert component dismissible by providing an onClose callback function. This will render a close icon button that users can click to hide the alert. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Alert/Alert.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Alert } from './Alert'; console.log('Alert dismissed')} /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Top App Bar Component DESCRIPTION: This snippet shows a standard top App Bar with a headline, a leading navigation icon, and a trailing options icon. This is a common pattern for main application headers. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/AppBar/AppBar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { AppBar } from './AppBar'; import { MdMenu, MdMoreVert } from 'react-icons/md'; } trailingContent={ } /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Center-Aligned App Bar Component DESCRIPTION: This example demonstrates a center-aligned App Bar, where the title is centered, and actions are placed on the leading and trailing edges. This variant is often used for detail screens. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/AppBar/AppBar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { AppBar } from './AppBar'; import { MdChevronLeft, MdMoreVert } from 'react-icons/md'; } trailingContent={ } /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Large Collapsible App Bar Component DESCRIPTION: This snippet showcases a large App Bar that collapses to a smaller size on scroll. It uses the variant="large" prop and requires a scroll container to trigger the collapse effect. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/AppBar/AppBar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { AppBar } from './AppBar'; import { MdChevronLeft, MdMoreVert } from 'react-icons/md'; } trailingContent={ } /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Avatar Component DESCRIPTION: 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. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Avatar/Avatar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Avatar } from './Avatar'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Avatar Component with Fallback DESCRIPTION: This snippet demonstrates the fallback behavior of the Avatar component. When the src URL is invalid or the image fails to load, the component displays the provided fallback text. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Avatar/Avatar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Avatar } from './Avatar'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Square-Shaped Avatar Component DESCRIPTION: The Avatar component's shape can be customized using the shape prop. This example shows how to create a square-shaped avatar. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Avatar/Avatar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Avatar } from './Avatar'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Avatar Component with Custom Colors DESCRIPTION: The background and text colors of the fallback state in the Avatar component can be customized using the fallbackColor and textColor props. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Avatar/Avatar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Avatar } from './Avatar'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Badge Component DESCRIPTION: This snippet shows a basic Badge component used to display a count, such as the number of notifications. By default, it uses the 'error' variant color. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Badge/Badge.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Badge } from './Badge'; 5 IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Badge Component with Variants DESCRIPTION: The Badge component supports different color variants ('error', 'warning', 'success', 'info') to convey semantic meaning. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Badge/Badge.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Badge } from './Badge';
3 12 New 99+
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Dot Badge Component DESCRIPTION: A Badge can be rendered as a small dot, useful for indicating a status or unread notification without a specific count, by setting the dot prop to true. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Badge/Badge.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Badge } from './Badge'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Badge Component with Maximum Count DESCRIPTION: The max prop can be used to cap the displayed number on a Badge. Any number greater than max will be displayed as max+. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Badge/Badge.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Badge } from './Badge'; 150 IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Badge Component with an Icon Button DESCRIPTION: This example demonstrates how to position a Badge relative to another element, such as an IconButton, to create a notification indicator. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Badge/Badge.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Badge } from './Badge'; import { IconButton } from '../IconButton'; import { MdNotifications } from 'react-icons/md';
5
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Button Component DESCRIPTION: This snippet shows the default 'filled' variant of the Button component, which is the most prominent style for primary actions. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Button/Button.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Button } from './Button'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Button Component Variants DESCRIPTION: This example showcases all available visual styles for the Button component: 'filled', 'outlined', 'text', 'elevated', and 'tonal'. Each variant serves a different level of emphasis in the UI. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Button/Button.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Button } from './Button';
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Button Component with Icon DESCRIPTION: An icon can be added to a Button component using the icon prop. Its position can be controlled with the iconPosition prop ('left' or 'right'). SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Button/Button.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Button } from './Button'; import { MdDownload } from 'react-icons/md'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Segmented Button Component DESCRIPTION: The SegmentedButton component allows users to select one option from a set. It is created by wrapping multiple SegmentedButton.Segment components. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Button/Button.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { SegmentedButton } from './Button'; const BasicSegmentedButtonExample = () => { const [selected, setSelected] = useState('option1'); return ( setSelected(id as string)}> Option 1 Option 2 Option 3 ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Multi-Select Segmented Button DESCRIPTION: By adding the multiselect prop, the SegmentedButton can be configured to allow multiple selections. The selectedIds prop should be an array of strings. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Button/Button.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { SegmentedButton } from './Button'; const MultiSelectSegmentedButtonExample = () => { const [selected, setSelected] = useState(['option1', 'option3']); return ( setSelected(ids as string[])} > Option 1 Option 2 Option 3 Option 4 ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Card Component DESCRIPTION: This snippet shows a basic Card component with the 'elevated' variant, which uses a shadow to create depth. Cards are used to group related content and actions. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Card/Card.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Card } from './Card'; import { Typography } from '../Typography/Typography';
Basic Card This is a basic card with elevated style. Cards contain content and actions about a single subject.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Card Component with Header and Footer DESCRIPTION: The Card component can be structured with distinct header and footer sections using the headerContent and footerContent props, which is useful for titles and action buttons. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Card/Card.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Card } from './Card'; import { Typography } from '../Typography/Typography'; import { Button } from '../Button/Button'; Card Header} footerContent={
} >
This card has a header and footer.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Horizontal Card Component with Image DESCRIPTION: By setting layout="horizontal", the Card component arranges its content horizontally. This is ideal for displaying an image alongside text content, such as in a list or feed. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Card/Card.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Card } from './Card'; import { Typography } from '../Typography/Typography';
Horizontal Card This card uses a horizontal layout.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Interactive Card Component DESCRIPTION: The interactive prop adds hover and focus effects to the Card, indicating to the user that it is a clickable element, suitable for navigation or selection. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Card/Card.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Card } from './Card'; import { Typography } from '../Typography/Typography';
Interactive Card This card is interactive and has hover effects.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Assist Chip Component DESCRIPTION: Assist chips represent smart or automated actions, like adding an event to a calendar. They often start with a verb and can include an icon. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Chip/Chip.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Chip, ChipSet } from './'; import { MdCalendarToday, MdMap } from 'react-icons/md'; } onClick={() => console.log('Add to itinerary')} /> } onClick={() => console.log('Show on map')} /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Filter Chip Component DESCRIPTION: Filter chips are used to filter content. They can be selected or deselected, and their state is often indicated by a leading checkmark icon when selected. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Chip/Chip.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Chip, ChipSet } from './'; const FilterChipsExample = () => { const [selected, setSelected] = useState(true); return ( setSelected(!selected)} /> ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Input Chip Component DESCRIPTION: Input chips represent discrete pieces of information, like email contacts or search terms. They typically include a trailing 'X' icon for removal. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Chip/Chip.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Chip, ChipSet } from './'; const InputChipsExample = () => { const [attendees, setAttendees] = useState([ { id: 1, name: 'Ping Qiang' }, ]); const removeAttendee = (id: number) => { setAttendees(prev => prev.filter(a => a.id !== id)); }; return ( {attendees.map(attendee => ( removeAttendee(attendee.id)} /> ))} ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Suggestion Chip Component DESCRIPTION: Suggestion chips help users by offering dynamic, contextual suggestions, such as quick replies in a chat application. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Chip/Chip.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Chip, ChipSet } from './'; console.log('Selected: I agree')} /> console.log('Selected: Looks good to me')} /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Checkbox Component DESCRIPTION: This snippet shows the default usage of the Checkbox component with a label. It can be used in a controlled or uncontrolled manner. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/Checkbox/Checkbox.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Checkbox } from './Checkbox'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Checkbox Component with Helper Text and Error State DESCRIPTION: The Checkbox component can display helper text and enter an error state. The error prop applies error styling, and helperText provides additional context or error messages. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/Checkbox/Checkbox.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Checkbox } from './Checkbox'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic DatePicker Component DESCRIPTION: 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. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/DatePicker/DatePicker.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { DatePicker } from './DatePicker'; const DefaultRender = () => { const [date, setDate] = useState(null); return ; }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: DatePicker with Date Restrictions DESCRIPTION: The DatePicker can be configured to restrict selectable dates to a specific range using the minDate and maxDate props. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/DatePicker/DatePicker.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { DatePicker } from './DatePicker'; const WithDateRestrictionsRender = () => { const [date, setDate] = useState(null); const today = new Date(); const minDate = new Date(today.getFullYear() - 1, today.getMonth(), today.getDate()); const maxDate = new Date(today.getFullYear() + 1, today.getMonth(), today.getDate()); return ( ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Dialog Component DESCRIPTION: This example shows how to create a basic dialog using Dialog, DialogTrigger, and DialogContent. The dialog is modal and includes a title, description, and a close button. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Dialog/Dialog.stories.tsx LANGUAGE: tsx CODE: Generated 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. IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Form Dialog Component DESCRIPTION: This snippet demonstrates how to create a dialog containing a form. The footer prop is used for action buttons like 'Cancel' and 'Submit', and the form is linked to the submit button via its ID. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Dialog/Dialog.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Dialog, DialogTrigger, DialogClose, DialogContent } from './Dialog'; import { Button } from '../Button/Button'; } >
{/* Form fields go here */}
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Alert Dialog Component DESCRIPTION: An alert dialog informs the user about urgent information that requires acknowledgment. The preventOutsideClose prop is used to ensure the user explicitly interacts with the dialog. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Dialog/Dialog.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Dialog, DialogTrigger, DialogClose, DialogContent } from './Dialog'; import { Button } from '../Button/Button'; } > {/* Alert message content */} IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Divider Component DESCRIPTION: The Divider component is used to visually separate content. This example shows a default horizontal divider. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Divider/Divider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Divider } from './Divider'; import { Typography } from '../Typography/Typography';
Content above Content below
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Divider with Text DESCRIPTION: A horizontal Divider can include text, which is useful for creating clear separations in forms or lists, such as an 'OR' condition. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Divider/Divider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Divider } from './Divider'; import { Typography } from '../Typography/Typography';
Login with your email and password. Continue with Google or Facebook.
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Vertical Divider Component DESCRIPTION: By setting orientation="vertical", the Divider can be used to separate content horizontally. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Divider/Divider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Divider } from './Divider'; import { Typography } from '../Typography/Typography';
Left content Right content
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Floating Action Button (FAB) DESCRIPTION: The Floating Action Button (FAB) represents the primary action on a screen. This example shows a standard FAB with a primary color variant. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/FAB/FAB.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { FAB } from './FAB'; import { MdAdd } from 'react-icons/md'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Extended Floating Action Button (FAB) DESCRIPTION: A FAB can be extended to include a text label by setting the extended prop to true and providing a label. This is useful for making the primary action more explicit. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/FAB/FAB.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { FAB } from './FAB'; import { MdMail } from 'react-icons/md'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Standard Icon Button DESCRIPTION: The IconButton provides a circular touch target for an icon. The 'standard' variant has a transparent background with a state layer on interaction. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/IconButton/IconButton.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { IconButton } from './IconButton'; import { MdFavoriteBorder } from 'react-icons/md'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Icon Button Variants DESCRIPTION: IconButtons are available in 'standard', 'filled', and 'outlined' variants to match different levels of emphasis and UI contexts. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/IconButton/IconButton.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { IconButton } from './IconButton'; import { MdFavoriteBorder, MdAdd, MdSettings } from 'react-icons/md';
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Icon Toggle Button DESCRIPTION: The IconToggle component is a button that allows users to toggle a selection on and off, such as favoriting an item. It animates between an outlined and a filled state. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/IconToggle/IconToggle.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { IconToggle } from './IconToggle'; import { IoMdHeart } from 'react-icons/io'; } activeColor="#FF0000" defaultActive={false} size={40} strokeWidth={20} /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic List Component DESCRIPTION: The List component is used to display a vertical list of items. This example shows a simple list with several ListItem children. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/List/List.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { List, ListItem } from './List'; Item 1 Item 2 Item 3 IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: List with Icons and Secondary Text DESCRIPTION: ListItems can be enhanced with leading icons (startIcon), trailing icons (endIcon), and secondary text to provide more context for each item. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/List/List.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { List, ListItem } from './List'; import { MdMail, MdChevronRight } from 'react-icons/md'; } endIcon={} secondaryText="This is a description for the item" > Inbox IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: List with Subheaders DESCRIPTION: The ListSubheader component can be used to group items within a List into sections. The sticky prop can be used to make the subheader stick to the top during scrolling. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/List/List.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { List, ListItem, ListSubheader } from './List'; Section 1 Item 1 Item 2 Section 2 Item 3 IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Menu Component DESCRIPTION: This example demonstrates a basic Menu, triggered by a Button. The menu contains MenuItem components and a MenuSeparator. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Menu/Menu.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Menu, MenuTrigger, MenuContent, MenuItem, MenuSeparator } from './Menu'; import { Button } from '../Button'; Profile Settings Log out IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Menu with Submenus DESCRIPTION: Menus can be nested to create submenus. This is achieved by using the MenuSub, MenuSubTrigger, and MenuSubContent components. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Menu/Menu.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Menu, MenuTrigger, MenuContent, MenuItem, MenuSub, MenuSubTrigger, MenuSubContent } from './Menu'; import { Button } from '../Button'; Apple More Fruits Cherry Grape IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Menu with Selected Items DESCRIPTION: Menu items can indicate a selected state, which is useful for settings or preference menus. The selected prop on a MenuItem will display a checkmark icon. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Menu/Menu.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Menu, MenuTrigger, MenuContent, MenuItem } from './Menu'; import { Button } from '../Button'; const SelectedItemsExample = () => { const [notifications, setNotifications] = useState(true); return ( setNotifications(!notifications)} > Enable Notifications ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Modal Navigation Drawer DESCRIPTION: A modal NavigationDrawer appears over the content and is typically used on smaller screens. It is controlled with the open and onClose props. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/NavigationDrawer/NavigationDrawer.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { NavigationDrawer, NavigationItem } from './NavigationDrawer'; import { IconButton } from '../IconButton'; import { MdMenu, MdHome } from 'react-icons/md'; const ModalNavigationDrawer = () => { const [open, setOpen] = useState(false); return ( <> setOpen(true)}> setOpen(false)} variant="modal" > } label="Home" /> ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Permanent Navigation Drawer DESCRIPTION: A permanent NavigationDrawer is always visible on the screen and is suitable for desktop layouts. It pushes the main content to the side. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/NavigationDrawer/NavigationDrawer.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { NavigationDrawer, NavigationItem } from './NavigationDrawer'; import { MdHome } from 'react-icons/md';
} label="Home" />
{/* Page content goes here */}
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Navigation Rail DESCRIPTION: The NavigationRail provides access to primary destinations in an app, typically on tablet and desktop screens. It displays a column of icons and optional text labels. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/NavigationRail/NavigationRail.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { NavigationRail, NavigationRailItem } from './NavigationRail'; import { MdHome, MdSearch, MdSettings } from 'react-icons/md'; const BasicNavigationRail = () => { const [selected, setSelected] = useState(0); return ( } label="Home" selected={selected === 0} onClick={() => setSelected(0)} /> } label="Search" selected={selected === 1} onClick={() => setSelected(1)} /> } label="Settings" selected={selected === 2} onClick={() => setSelected(2)} /> ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Collapsible Navigation Rail DESCRIPTION: A NavigationRail can be made collapsible to save space. The collapsible prop enables this behavior, and the collapsed and onCollapsedChange props can be used to control its state. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/NavigationRail/NavigationRail.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { NavigationRail, NavigationRailItem } from './NavigationRail'; import { MdHome, MdSearch } from 'react-icons/md'; const CollapsibleNavigationRail = () => { const [selected, setSelected] = useState(0); const [collapsed, setCollapsed] = useState(false); return ( } label="Home" selected={selected === 0} onClick={() => setSelected(0)} /> } label="Search" selected={selected === 1} onClick={() => setSelected(1)} /> ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Linear Progress Indicator DESCRIPTION: The Progress component can be rendered as a linear bar. This example shows a determinate linear progress indicator with a specific value. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Progress/Progress.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Progress } from './Progress'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Indeterminate Linear Progress DESCRIPTION: When the value prop is omitted, the Progress component enters an indeterminate state, which is used when the completion time of a process is unknown. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Progress/Progress.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Progress } from './Progress'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Circular Progress Indicator DESCRIPTION: By setting variant="circular", the Progress component renders as a circular indicator. This example shows a determinate circular progress indicator. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Progress/Progress.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Progress } from './Progress'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Circular Progress with Label DESCRIPTION: The showLabel prop can be used to display the current progress percentage inside the circular indicator. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Progress/Progress.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Progress } from './Progress'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic RadioGroup Component DESCRIPTION: The RadioGroup component is used to group multiple RadioButton components, allowing a user to select only one option from a set. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/RadioButton/RadioButton.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { RadioButton, RadioGroup } from './RadioButton'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Horizontal RadioGroup DESCRIPTION: The orientation of the RadioGroup can be set to 'horizontal' to lay out the radio buttons in a row. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/RadioButton/RadioButton.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { RadioButton, RadioGroup } from './RadioButton'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Select Component DESCRIPTION: The Select component provides a dropdown menu for selecting one option from a list. This example shows an 'outlined' variant. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/Select/Select.stories.tsx LANGUAGE: tsx CODE: Generated 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 ( ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Slider Component DESCRIPTION: The Slider component allows users to make selections from a range of values. This is a basic, continuous slider. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Slider/Slider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Slider } from './Slider'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Discrete Slider with Ticks and Label DESCRIPTION: A slider can be made discrete by setting the step and ticks props. The labeled prop displays the current value in a tooltip above the thumb during interaction. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Slider/Slider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Slider } from './Slider'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Range Slider Component DESCRIPTION: By setting thumbCount={2}, the Slider can be used to select a range of values. The defaultValue or value prop should be an array with two numbers. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Slider/Slider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Slider } from './Slider'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Vertical Slider Component DESCRIPTION: The Slider can be oriented vertically by setting orientation="vertical". SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Slider/Slider.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Slider } from './Slider';
IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Using the Snackbar Provider DESCRIPTION: To use the Snackbar component, wrap your application or a portion of it with the SnackbarProvider. This allows any child component to trigger snackbars using the useSnackbar hook. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Snackbar/Snackbar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { SnackbarProvider, useSnackbar } from './'; import { Button } from '../Button'; const SnackbarDemo = () => { const snackbar = useSnackbar(); return ( ); }; const App = () => ( ); IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Snackbar with an Action DESCRIPTION: A Snackbar can include an action button, such as 'Undo' or 'Retry', by providing an action object with a label and an onClick handler to the snackbar.show method. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Snackbar/Snackbar.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useSnackbar } from './'; import { Button } from '../Button'; const Demo = () => { const snackbar = useSnackbar(); return ( ); } IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Switch Component DESCRIPTION: The Switch component is a toggle control that allows users to turn a setting on or off. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/Switch/Switch.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Switch } from './Switch'; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Switch Component with Icon DESCRIPTION: An icon can be displayed inside the Switch thumb by passing a React node to the icon prop. This is useful for visually representing the state, like a moon icon for dark mode. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/Switch/Switch.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { Switch } from './Switch'; import { MdDarkMode } from 'react-icons/md'; } /> IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic Tabs Component DESCRIPTION: The Tabs component provides a way to navigate between different views or groups of content. It consists of a Tabs container and multiple Tab components. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Tabs/Tabs.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Tabs, Tab } from './Tabs'; const PrimaryTabs = () => { const [value, setValue] = useState(0); return ( ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Tabs with Icons DESCRIPTION: Tabs can include icons in addition to or instead of labels. By default, the icon is displayed above the label. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Tabs/Tabs.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Tabs, Tab } from './Tabs'; import { MdImage, MdVideoLibrary } from 'react-icons/md'; const WithIconsTabs = () => { const [value, setValue] = useState(0); return ( } label="Photos" /> } label="Videos" /> ); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Scrollable Tabs Component DESCRIPTION: When there are more tabs than can fit in the available space, the scrollable prop allows the user to scroll horizontally to view all tabs. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Tabs/Tabs.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { useState } from 'react'; import { Tabs, Tab } from './Tabs'; const ScrollableTabs = () => { const [value, setValue] = useState(0); return (
); }; IGNORE_WHEN_COPYING_START content_copy download Use code with caution. Tsx IGNORE_WHEN_COPYING_END TITLE: Basic TextArea Component DESCRIPTION: The TextArea component provides a multi-line text input field for forms. This example shows the default 'classic' variant. SOURCE: /Users/wes/Documents/projects/gamuda/yoda/src/components/Forms/TextArea/TextArea.stories.tsx LANGUAGE: tsx CODE: Generated tsx import { TextArea } from './TextArea';