mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-28 00:47:53 +00:00
* temp commit :: editor redesign
* fix :: components panel ui
* style updates
* fix :: arrangement widget list
* fix :: light mode widget list
* style fixes query manager
* updates
* updates heaer styles
* global settings fix
* left sidebar states and icon change
* cleanup
* minor fixes :: review
* fix opacity mode toggle
* detailing in hover states , bugfixes
* fix :: coloring whole app , debugger ui
* cleanup
* fix :: revert some changes , fix statistics widget
* feat :: navbar with new layout
* fix :: lint warnings
* cleanup
* cleanup
* minor fixes
* fix :: reusing serchbox
* removed unwanted prop
* Revert "cleanup"
This reverts commit b18abe19fb.
* fix :: icons sidebar
* fix :: padding searchbar
* style fix
* radix :: dark theme for portals
* fix :: icon styles
* fix :: all codehinter styles
* update :: base bg color app
* fix :: viewer color
* minor fixes :: icon left sidebar
* typo
* fix :: styling save message header
* icon :: fix for layout and inspector queries
* fix :: canvas and editor bg
* fix :: release btn style
* fix :: navbar border
* undo redo tooltip
* fix :: page input
* remove released btn icon
* fix :: for icon not loading proper in inspector
* fix :: dark mode toggle icon size
* fix :: share app ui
* fix :: style fixes , inspector runpy icon
* fix :: ui runpy codehinter
* fix :: inputs in gds connection
* cleanup
* fix :: copilot codehinter ui
* fix :: share modal button
* fix :: canvas bg text
* style fix debugger
* fix :: whole dahsboard layout and border for all codehinters
* fix :: icon fills
* fix :: icon fill color sidebar
* darkmode fill color
* minor style fix
* Widget inspector redesign (#7355)
* Setup Storybook
* Update storybook config
* Add tab and toggle group component
* Created list component
* Properties tab
* update codehinter dropdown components
* Refactor styling
* Inspector header changes
* Fix es lint issue
* Fix
* feat :: styling color picker styles panel
* Fix color picker alignment
* feat :: remove alpha
* Fix UI bugs
* fix :: color picker
* Ui fix
* Backward compatible pagination changes
* fix
* Feedback changes
* UI feedback
* Check fix
* Fix
* fix :: canvas bg popover
* Styles fix
* Fix conflct issues
* minor style fix style tab
* Fix
* review comments fix :: hovering in color picker
* Code review and design feedback
* UI feedback
* Fix UI styles
* Fix pagination issue
* fix :: dark mode issues in select , number input
* fix :: remove extra boreder
* fix :: table column popover ui and component popover inspector
* fix :: datepickre input table column
* fix :: colopicker in table column inspector
* fix :: link column type ui in table
* fix :: column delete ui and delete not triggering
* Fix list item not dragging
* fix :: closing of popover on link column select
* style fix table popover
* Pass dark mode to Event manager button
* fix :: ux event manager
* cleanup
* cleanup
* fix :: delete page modal ui
---------
Co-authored-by: stepinfwd <stepinfwd@gmail.com>
* style fixes
---------
Co-authored-by: Nakul Nagargade <133095394+nakulnagargade@users.noreply.github.com>
14 lines
1.5 KiB
JavaScript
14 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
|
|
const Upstatistics = () => (
|
|
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M9.78199 0.187617C9.66186 0.307745 9.59438 0.470675 9.59438 0.640562C9.59438 0.81045 9.66186 0.97338 9.78199 1.09351C9.90212 1.21364 10.0651 1.28112 10.2349 1.28112H14.0079L9.54698 6.73359L6.20452 3.38986C6.13902 3.32442 6.06011 3.27396 5.97322 3.24195C5.88634 3.20995 5.79356 3.19716 5.70126 3.20447C5.60896 3.21177 5.51934 3.239 5.43857 3.28428C5.35781 3.32955 5.28782 3.3918 5.23343 3.46672L0.108928 10.5129C0.0164671 10.6505 -0.0190707 10.8185 0.00978223 10.9817C0.0386352 11.145 0.129633 11.2906 0.263652 11.3882C0.397671 11.4857 0.564277 11.5275 0.728459 11.5047C0.892641 11.482 1.04162 11.3965 1.14408 11.2662L5.82787 4.826L9.14214 8.14027C9.20542 8.20343 9.28122 8.25265 9.36467 8.28475C9.44812 8.31686 9.53736 8.33114 9.62666 8.32667C9.71596 8.32221 9.80333 8.2991 9.88316 8.25883C9.96299 8.21856 10.0335 8.16203 10.0902 8.09287L14.7189 2.43414V5.76506C14.7189 5.93495 14.7864 6.09788 14.9065 6.21801C15.0266 6.33814 15.1895 6.40562 15.3594 6.40562C15.5293 6.40562 15.6923 6.33814 15.8124 6.21801C15.9325 6.09788 16 5.93495 16 5.76506V0.640562C16 0.470675 15.9325 0.307745 15.8124 0.187617C15.6923 0.0674878 15.5293 0 15.3594 0H10.2349C10.0651 0 9.90212 0.0674878 9.78199 0.187617Z"
|
|
fill="#36AF8B"
|
|
/>
|
|
|
|
<rect x="27.7549" y="17.1086" width="5.45898" height="13.7825" rx="2.72949" fill="#3E63DD" />
|
|
</svg>
|
|
);
|
|
|
|
export default Upstatistics;
|