| 3 | import classNames from "classnames"; |
| 4 | |
| 5 | export interface ShapeSectionProps extends PropsWithChildren { |
| 6 | effect: "left-triangle" | "right-triangle" | "center-triangle"; |
| 7 | maskColor: |
| 8 | | "white" |
| 9 | | "gray-100" |
| 10 | | "blue" |
| 11 | | "blue-dark" |
| 12 | | "blue-black" |
| 13 | | "blue-darkest"; |
| 14 | darkModeColor?: "blue-black" | "blue-dark" | "blue-darkest"; |
| 15 | className?: string; |
| 16 | } |
| 17 | |
| 18 | export const safeList = [ |
| 19 | "after:bg-white", |
nothing calls this directly
no outgoing calls
no test coverage detected