2023-02-28 06:33:18 +00:00
|
|
|
type SensitiveTextOptionalProps = {
|
2023-02-28 21:08:22 +00:00
|
|
|
inline?: boolean;
|
2023-02-28 06:33:18 +00:00
|
|
|
monospaced?: boolean;
|
2023-06-29 00:25:38 +00:00
|
|
|
revealButtonProps?: import('../components/IconButton').IconButtonProps;
|
2023-02-28 06:33:18 +00:00
|
|
|
revealInitially?: boolean;
|
2023-06-29 00:25:38 +00:00
|
|
|
textLineHeight?: number | null;
|
2023-02-28 06:33:18 +00:00
|
|
|
textProps?: import('../components/Text').BodyTextProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
type SensitiveTextProps = SensitiveTextOptionalProps;
|