@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
13 lines • 328 B
TypeScript
interface OptionalProps {
/**
* The value to check for truthiness.
*/
value?: string | number | boolean;
/**
* The children to render if the value is truthy.
*/
children: React.ReactNode;
}
export declare const Optional: React.FC<OptionalProps>;
export {};
//# sourceMappingURL=index.d.ts.map