Skip to main content

IconButton

API documentation for the React Native IconButton component. Learn about the available props.

Import#

import { IconButton } from "@react-native-material/core";// orimport IconButton from "@react-native-material/core/IconButton";

Props#

interface IconButtonProps extends TouchableSurfaceProps {  icon?: React.ReactElement | undefined;
  color?: ColorName | string | undefined;
  size?: "small" | "medium" | "large" | undefined;}