Spaces:
Running
Running
File size: 3,131 Bytes
9cd6ddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
import { motion } from "framer-motion";
import { forwardRef } from "react";
export const Triangle = forwardRef((props: any, ref) => {
const { shape } = props;
const GradientType =
shape?.gradient?.type === "radialGradient"
? "radialGradient"
: "linearGradient";
return (
<svg
ref={ref as any}
width={props?.width ?? 303}
height={props?.height ?? 303}
viewBox="0 0 303 259"
fill="none"
id={props?.id ?? undefined}
xmlns="http://www.w3.org/2000/svg"
>
<defs>
{shape?.image?.enabled && shape?.image?.urls?.length > 0 && (
<pattern
id={`shape-gradient-${shape?.component ?? "null"}`}
x="0"
y="0"
patternUnits="userSpaceOnUse"
width={303}
height={303}
>
<image
href={shape?.image?.urls[0]}
width="100%"
height="100%"
preserveAspectRatio="xMidYMid slice"
/>
</pattern>
)}
<GradientType
id={`shape-gradient-${shape?.component ?? "null"}`}
gradientTransform={`rotate(${shape?.gradient?.angle ?? "90"})`}
>
{shape?.gradient?.enabled ? (
<>
{shape?.gradient?.colours?.map((color: any, c: number) => (
<stop
key={c}
offset={`${color.left}%`}
stopColor={color.value}
/>
))}
</>
) : (
<stop offset="0%" stopColor={shape?.colour ?? "#fff"} />
)}
</GradientType>
</defs>
<defs>
<mask id={`mask-${shape?.component ?? "null"}`} fill="black">
<rect width="100%" height="100%" fill="white" />
<g
style={{
transformOrigin: "center",
}}
opacity={100}
>
{shape?.transparency && props?.children && props.children}
</g>
</mask>
</defs>
<g fill={`url(#${`shape-gradient-${shape?.component ?? "null"}`})`}>
<g mask={`url(#${`mask-${shape?.component ?? "null"}`})`}>
<motion.path
d="M300.349285,230.723128 L167.274192,8.93110903 C160.128831,-2.97703634 142.870246,-2.97703634 135.724886,8.93110903 L2.65038474,230.723128 C-4.70743115,242.985168 4.12573542,258.584945 18.4247419,258.584945 L284.574927,258.584945 C298.874526,258.584945 307.707692,242.985168 300.349285,230.723128 Z"
animate={{
scaleX:
shape?.border?.width > 0 ? 1 - shape?.border?.width / 350 : 1,
scaleY:
shape?.border?.width > 0 ? 1 - shape?.border?.width / 350 : 1,
rotate: shape?.position?.angle ?? 0,
}}
stroke={shape?.border?.colour}
strokeLinejoin="round"
strokeWidth={shape?.border?.width}
onClick={props?.onClick ? props.onClick : () => {}}
/>
</g>
</g>
{!shape?.transparency && props?.children && props.children}
</svg>
);
});
|