import React from "react"; import type { ComponentProps } from "react"; import { action } from "storybook/actions"; import { IconButton } from "@jobber/components-native"; type IconButtonProps = ComponentProps; export function IconButtonBasic(props: Partial) { return ( action("alert")("👍")} {...props} /> ); }