1 | "use strict";
|
2 | var __importDefault = (this && this.__importDefault) || function (mod) {
|
3 | return (mod && mod.__esModule) ? mod : { "default": mod };
|
4 | };
|
5 | Object.defineProperty(exports, "__esModule", { value: true });
|
6 | exports.Chevron = Chevron;
|
7 | const react_1 = __importDefault(require("react"));
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | function Chevron(props) {
|
15 | const { size = 24, orientation = "left", className } = props;
|
16 | return (react_1.default.createElement("svg", { className: className, width: size, height: size, viewBox: "0 0 24 24" },
|
17 | orientation === "up" && (react_1.default.createElement("polygon", { points: "6.77 17 12.5 11.43 18.24 17 20 15.28 12.5 8 5 15.28" })),
|
18 | orientation === "down" && (react_1.default.createElement("polygon", { points: "6.77 8 12.5 13.57 18.24 8 20 9.72 12.5 17 5 9.72" })),
|
19 | orientation === "left" && (react_1.default.createElement("polygon", { points: "16 18.112 9.81111111 12 16 5.87733333 14.0888889 4 6 12 14.0888889 20" })),
|
20 | orientation === "right" && (react_1.default.createElement("polygon", { points: "8 18.612 14.1888889 12.5 8 6.37733333 9.91111111 4.5 18 12.5 9.91111111 20.5" }))));
|
21 | }
|
22 |
|
\ | No newline at end of file |