UNPKG

281 BTypeScriptView Raw
1import { TriangleConfiguration } from '../types/triangleConfiguration';
2import { Styles } from '../types/style';
3
4declare function triangle({
5 pointingDirection,
6 height,
7 width,
8 foregroundColor,
9 backgroundColor,
10}: TriangleConfiguration): Styles;
11
12export default triangle;