import React, { ReactElement } from "react"; import { RedactableValue } from "./RedactableValue"; export default { title: "RedactableValue/RedactableValue", component: RedactableValue, }; export const RedactableValueDefault = (): ReactElement => { return ( { console.log("Please redact"); }} /> ); }; export const RedactableValueIconDefault = (): ReactElement => { return console.log("Please redact")} />; }; export const RedactableValueIconCustom = (): ReactElement => { return ( console.log("Please redact")} iconRedact={<>X} /> ); };