This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0 ^0.8.30 ^0.8.4; | |
| // lib/creator-token-standards/lib/PermitC/src/Constants.sol | |
| /// @dev Constant bytes32 value of 0x000...000 | |
| bytes32 constant ZERO_BYTES32 = bytes32(0); | |
| /// @dev Constant value of 0 | |
| uint256 constant ZERO = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Children, ReactNode } from "react"; | |
| interface ShowProps { | |
| children: ReactNode; | |
| } | |
| interface ShowChildProps { | |
| when?: boolean; | |
| } |