saleor-dashboard/src/styles/mixins.ts

10 lines
282 B
TypeScript
Raw Normal View History

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,
width: 0
});