import { Polygon, RectProps } from '../../jsx'; export const Triangle = ({ width = 25, height = 25, colorPrimary = '#6699FF', rotation = 0, strokeWidth = 4, ...rest }: RectProps & { colorPrimary: string; rotation?: number; }) => { // 定义三角形的三个顶点 const points = [ { x: width / 2, y: 0 }, // 顶点 { x: width, y: height }, // 右下角 { x: 0, y: height }, // 左下角 ]; const centerX = width / 2; const centerY = height / 2; const transform = `rotate(${rotation} ${centerX} ${centerY})`; return ( ); };