@limetech/lime-elements
Version:
14 lines • 482 B
TypeScript
/**
* Each of the supported callout types has a distinct color and icon.
* The colors can be changed using the provided CSS variables.
*
* - `note`: You might read this, you might not.
* - `important`: You should read this.
* - `tip`: You want to read this.
* - `caution`: I hope you read this.
* - `warning`: You need to read this.
*
* @public
*/
export type CalloutType = 'note' | 'important' | 'tip' | 'caution' | 'warning';
//# sourceMappingURL=callout.types.d.ts.map