IconButton
API documentation for the React Native IconButton component. Learn about the available props.
#
Importimport { IconButton } from "@react-native-material/core";// orimport IconButton from "@react-native-material/core/IconButton";
#
Propsinterface IconButtonProps extends TouchableSurfaceProps { icon?: React.ReactElement | undefined;
color?: ColorName | string | undefined;
size?: "small" | "medium" | "large" | undefined;}