2022-02-21 11:38:27 +00:00
|
|
|
import { CSSProperties } from "react";
|
|
|
|
|
|
|
|
export const triangle = (color: string, width: number): CSSProperties => ({
|
|
|
|
borderBottom: `${width}px solid ${color}`,
|
|
|
|
borderLeft: `${width}px solid transparent`,
|
|
|
|
borderRight: `${width}px solid transparent`,
|
|
|
|
height: 0,
|
2022-06-21 09:36:55 +00:00
|
|
|
width: 0,
|
2022-02-21 11:38:27 +00:00
|
|
|
});
|