3.5.0 • Published 11 months ago

@exhumer/ink-gradient v3.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

ink-gradient

Gradient color component for Ink

npm.io

Looking for a version compatible with Ink 2.x? Check out this release.

Install

$ npm install ink-gradient

Usage

import React from 'react';
import {render} from 'ink';
import Gradient from 'ink-gradient';
import BigText from 'ink-big-text';

render(
	<Gradient name="rainbow">
		<BigText text="unicorns"/>
	</Gradient>
);

API

<Gradient>

It accepts a string or Ink component as children, for example, ink-box.

Props

name

Type: string

Name of a built-in gradient.

colors

Type: string[] | object[]

Colors to use to make the gradient.

Related