mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
* feat : added design theme new colors * fix : adding new color swatch to input components * fix : colors, number input with height less than 16px and number input arrow in padding none mdode * fix : icon color * few color fixes * fixes * fix : icon color * icon color fixes * fix: color on disabled * fix : icon ill * feat :: add new icons for number inputs * remove unwanted file * render preview app fix * fix : arrows in number input * add hover color for number input * update colors with opacity * Revert "Merge branch 'appbuilder-1.6' into feature/color-theming" This reverts commit7a59814e58, reversing changes made to9ef7867889. * Revert "Revert "Merge branch 'appbuilder-1.6' into feature/color-theming"" This reverts commit02dcd8acf0. * revert few styles * fix : Able to update the number using arrows in the disable state * fix : scrolling in color picker * fix : color picker scroll issue --------- Co-authored-by: Adish M <adish.madhu@gmail.com>
22 lines
761 B
JavaScript
22 lines
761 B
JavaScript
import React from 'react';
|
|
|
|
const TriangleDownCenter = ({ fill = '#C1C8CD', width = '24', className = '', viewBox = '0 0 24 24', style }) => (
|
|
<svg
|
|
className={className}
|
|
width={width}
|
|
height={width}
|
|
viewBox={viewBox}
|
|
fill={fill}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
style={style}
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
clip-rule="evenodd"
|
|
d="M7.40924 13.2472C7.20496 13.5408 7.14385 13.9823 7.25441 14.3659C7.36496 14.7495 7.62542 14.9996 7.91432 14.9996L16.4857 14.9996C16.7746 14.9996 17.035 14.7495 17.1456 14.3659C17.2562 13.9823 17.195 13.5408 16.9908 13.2472L12.9576 7.45058C12.5392 6.84932 11.8608 6.84932 11.4424 7.45058L7.40924 13.2472Z"
|
|
fill={fill}
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default TriangleDownCenter;
|