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>
27 lines
1.2 KiB
JavaScript
27 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
|
|
const Texteditor = ({ fill = '#D7DBDF', width = 24, className = '', viewBox = '0 0 49 48' }) => (
|
|
<svg
|
|
width={width}
|
|
height={width}
|
|
viewBox={viewBox}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fill={fill}
|
|
fillRule="evenodd"
|
|
d="M26.46 5.143a2.357 2.357 0 012.357-2.357h15.715a2.357 2.357 0 010 4.714H28.817a2.357 2.357 0 01-2.357-2.357zm2.357 7.071a2.357 2.357 0 000 4.714h15.715a2.357 2.357 0 100-4.714H28.817zM26.46 24a2.357 2.357 0 012.357-2.357h15.715a2.357 2.357 0 110 4.714H28.817A2.357 2.357 0 0126.46 24zM2.89 33.428a2.357 2.357 0 012.357-2.357H44.53a2.357 2.357 0 110 4.715H5.247a2.357 2.357 0 01-2.357-2.358zM5.246 40.5a2.357 2.357 0 000 4.714H44.53a2.357 2.357 0 000-4.714H5.247z"
|
|
clipRule="evenodd"
|
|
></path>
|
|
<path
|
|
fill="#3E63DD"
|
|
fillRule="evenodd"
|
|
d="M13.889 7.882l-2.492 7.475h4.983L13.89 7.882zm7.98 9.035L18.193 5.888a4.537 4.537 0 00-8.609 0L5.908 16.917a2.333 2.333 0 00-.035.103l-2.078 6.235a2.357 2.357 0 104.473 1.49l1.558-4.674h8.126l1.558 4.674a2.357 2.357 0 004.472-1.49l-2.078-6.235a2.176 2.176 0 00-.035-.103z"
|
|
clipRule="evenodd"
|
|
></path>
|
|
</svg>
|
|
);
|
|
|
|
export default Texteditor;
|