### Install ink-big-text Source: https://github.com/sindresorhus/ink-big-text/blob/main/readme.md Installs the ink-big-text package using npm. ```sh npm install ink-big-text ``` -------------------------------- ### Basic Usage Example Source: https://github.com/sindresorhus/ink-big-text/blob/main/readme.md Renders large text using the BigText component within an Ink application, applying a rainbow gradient. ```javascript import React from 'react'; import {render} from 'ink'; import Gradient from 'ink-gradient'; import BigText from 'ink-big-text'; render( ); ``` -------------------------------- ### Render ASCII Art Snapshot Source: https://github.com/sindresorhus/ink-big-text/blob/main/test/snapshots/test.tsx.md Displays a rendered output using ASCII characters, typically generated during automated testing. This snapshot shows the visual representation of the text rendered by the AVA testing framework. ```ascii ██╗ ██╗ ███╗ ██╗ ██╗ ██████╗ ██████╗ ██████╗ ███╗ ██╗ ███████╗ ██║ ██║ ████╗ ██║ ██║ ██╔════╝ ██╔═══██╗ ██╔══██╗ ████╗ ██║ ██╔════╝ ██║ ██║ ██╔██╗ ██║ ██║ ██║ ██║ ██║ ██████╔╝ ██╔██╗ ██║ ███████╗ ██║ ██║ ██║╚██╗██║ ██║ ██║ ██║ ██║ ██╔══██╗ ██║╚██╗██║ ╚════██║ ╚██████╔╝ ██║ ╚████║ ██║ ╚██████╗ ╚██████╔╝ ██║ ██║ ██║ ╚████║ ███████║ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═══╝ ╚══════╝ ``` -------------------------------- ### Component API Source: https://github.com/sindresorhus/ink-big-text/blob/main/readme.md Documentation for the BigText React component, detailing its props and their relation to the underlying cfonts library. ```APIDOC Component: BigText Description: Renders large, stylized text within an Ink terminal application. Props: text: (string, required) The primary text content to be displayed in a large format. [other props]: (object, optional) All props except 'text' are passed directly as options to the underlying 'cfonts' library (https://github.com/dominikwilkowski/cfonts). - backgroundColor: (string, optional) An alias for the 'background' option in cfonts, used to set the background color of the text. - [See cfonts documentation for all available styling options like font, colors, alignment, etc.] Example Usage: Related Components: - ink-gradient: For applying gradient colors to text. - ink-link: For creating clickable links. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.