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.5 KiB
JavaScript
27 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
|
|
const Pdf = ({ 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="M10.939 2a4.715 4.715 0 00-4.715 4.715v34.57A4.715 4.715 0 0010.94 46h27.9a4.715 4.715 0 004.714-4.715V16.14a7.408 7.408 0 00-2.163-5.232l-6.58-6.726-.013-.012A7.409 7.409 0 0029.56 2h-18.62z"
|
|
clipRule="evenodd"
|
|
></path>
|
|
<path
|
|
fill="#3E63DD"
|
|
fillRule="evenodd"
|
|
d="M22.325 16.587c.002-1.527-.09-2.942-.341-4.006-.13-.548-.367-1.313-.9-1.9-.3-.33-.754-.67-1.375-.792a2.52 2.52 0 00-1.612.227c-.972.48-1.39 1.37-1.494 2.151-.093.698.04 1.395.206 1.965.298 1.027.87 2.21 1.57 3.419-.12 4.074-.863 9.485-1.905 13.203-1.112.546-2.144 1.18-2.843 1.905-.434.45-.964 1.164-1.034 2.116-.079 1.085.466 1.928 1.112 2.47.652.546 1.56.896 2.573.648.883-.216 1.494-.806 1.878-1.284.616-.767 1.114-1.836 1.524-2.981 2.892-1.162 6.842-2.184 10.02-2.598 1.035.831 2.1 1.537 3.095 1.9.602.22 1.427.408 2.289.176.996-.268 1.66-.988 1.987-1.836.325-.84.363-1.897-.313-2.816-.57-.775-1.417-1.113-2.033-1.279-1.044-.281-2.373-.313-3.74-.22-2.959-2.704-6.5-7.011-8.664-10.468zm3.79 11.172a64.338 64.338 0 01-4.186-4.909 68.483 68.483 0 01-.994 6.263c1.665-.53 3.45-.996 5.18-1.354z"
|
|
clipRule="evenodd"
|
|
></path>
|
|
</svg>
|
|
);
|
|
|
|
export default Pdf;
|