@chakra-ui/react APIs
- ChakraProvider
- Flex
- Box
- Button
- Text
- Heading
- Input
- Link
- Stack
- IconButton
- HStack
- Center
- FormLabel
- BoxProps
- useDisclosure
- FormControl
- Image
- extendTheme
- VStack
- PopoverContent
- PopoverTrigger
- Icon
- InputGroup
- ListItem
- Popover
- PopoverBody
- Select
- Grid
- Alert
- Modal
- ModalOverlay
- ModalContent
- ButtonGroup
- PopoverArrow
- Checkbox
- Tag
- Badge
- Tooltip
- SimpleGrid
- Textarea
- ModalBody
- useToast
- Avatar
- PopoverCloseButton
- useColorModeValue
- Menu
- MenuButton
- MenuItem
- MenuList
- Divider
- AlertIcon
- ButtonProps
- ModalHeader
- Spinner
- PopoverHeader
- FormErrorMessage
- Table
- Thead
- Tbody
- Tr
- Th
- Td
- useColorMode
- InputLeftElement
- ColorModeScript
- ModalFooter
- TabList
- Tab
- Drawer
- DrawerContent
- FlexProps
- DrawerOverlay
- DrawerBody
- Switch
- Accordion
- AccordionItem
- AccordionButton
- AccordionPanel
- AccordionIcon
- Slider
- SliderTrack
- SliderFilledTrack
- SliderThumb
- LinkProps
- ModalCloseButton
- Tabs
- TabPanels
- TabPanel
- List
- Container
- UnorderedList
- FormHelperText
- Code
- TagLabel
- Spacer
- GridItem
- DrawerHeader
- theme
- IconButtonProps
- DrawerCloseButton
- Portal
- Skeleton
- NumberInput
- NumberInputField
- NumberInputStepper
- NumberIncrementStepper
- NumberDecrementStepper
- Progress
- Radio
- AlertTitle
- InputLeftAddon
- MenuDivider
- Wrap
- chakra
- StackProps
- useClipboard
- RadioGroup
- Collapse
- AlertDescription
- InputProps
- ListIcon
- PopoverFooter
- InputRightElement
- AlertDialog
- AlertDialogOverlay
- AlertDialogBody
- AlertDialogContent
- AlertDialogFooter
- AlertDialogHeader
- TagCloseButton
- CloseButton
- CircularProgress
- WrapItem
- SlideFade
- createStandaloneToast
- localStorageManager
- Fade
- useMediaQuery
- AspectRatio
- AvatarGroup
- SelectProps
- Breadcrumb
- BreadcrumbItem
- TextProps
- useTheme
- OrderedList
- HeadingProps
- useBoolean
- TableCaption
- ColorModeProvider
- Theme
- BreadcrumbLink
- InputRightAddon
- Tfoot
- TagLeftIcon
- useBreakpointValue
- AccordionPanelProps
- UseToastOptions
- cookieStorageManager
- ContainerProps
- IconProps
- ListProps
- keyframes
- SkeletonText
- LinkBox
- LinkOverlay
- SliderMark
- useOutsideClick
- AlertDialogCloseButton
- CSSReset
- ThemeConfig
- Circle
- forwardRef
- useInterval
- useMultiStyleConfig
- StylesProvider
- CheckboxGroup
- usePrevious
- styled
- useStyles
- IToast
- ComponentStyleConfig
- BackgroundProps
- toast
- PinInput
- PinInputField
- Slide
- useUpdateEffect
- DarkMode
- LightMode
- AvatarBadge
- MenuButtonProps
- AccordionItemProps
- ListItemProps
- Img
- createIcon
- ColorMode
- ComponentWithAs
- VisuallyHidden
- Editable
- EditableInput
- EditablePreview
- DrawerFooter
- useMergeRefs
Other Related APIs
- react#FC
- @chakra-ui/react#Box
- @chakra-ui/react#Flex
- @chakra-ui/react#Text
- @chakra-ui/react#useColorModeValue
- @chakra-ui/react#BoxProps
- @chakra-ui/react#FlexProps
- @chakra-ui/react#ButtonProps
- @chakra-ui/react#IconButtonProps
- @chakra-ui/react#LinkProps
- @chakra-ui/react#StackProps
- @chakra-ui/react#SelectProps
- @chakra-ui/react#InputProps
- @chakra-ui/react#TextProps
- @chakra-ui/react#useTheme
- @chakra-ui/react#AccordionPanelProps
- @chakra-ui/react#ContainerProps
- @chakra-ui/react#AccordionItemProps
- @chakra-ui/react#HeadingProps
- @chakra-ui/react#ListProps
- @chakra-ui/icons#ChevronDownIcon
@chakra-ui/react#IconProps TypeScript Examples
The following examples show how to use
@chakra-ui/react#IconProps.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Logo.tsx From coindrop with GNU General Public License v3.0 | 6 votes |
PiggyLogo: FC<IconProps> = (iconProps) => {
const theme = useTheme();
const { colorMode } = useColorMode();
const logoOutlineColor = useColorModeValue(theme.colors.gray['800'], theme.colors.gray['900']);
// eslint-disable-next-line react/jsx-props-no-spreading
return colorMode === 'light'
? <PiggyLogoIcon color={logoOutlineColor} {...iconProps} />
: <PiggyLogoIconDarkMode color={logoOutlineColor} {...iconProps} />;
}
Example #2
Source File: paymentMethods.tsx From coindrop with GNU General Public License v3.0 | 5 votes |
paymentMethodIcons: { [id: string]: ComponentWithAs<"svg", IconProps> } = paymentMethods.reduce((result, item) => {
// eslint-disable-next-line no-param-reassign
result[item.id] = item.icon;
return result;
}, {})