mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
* adding colors
* feat :: add button
* feat :: added typography
* feat: init storybook
* removes browserlist
* feat :: adding button styles and button component
* feat :: added sass addon
* stories update
* feat :: replacing with radix colors
* danger variants
* updates buttin story
* fix :: removing default items
* cleanup
* fix icons update
* feat :: folder list component
* fix :: naming
* icon and split button :: init
* intermediate save :: app card component
* renaming
* updates
* update for module imports
* updates icon
* update :: homepage design updates
* design changes dashboard
* updates :: apps section
* workspace stting new design upate
* updates dasboard design
* style :: fixes
* feat :: added context for sidebar nav breadcrumb
* added all solid icons
* intermediate update
* change: conditions for fetching users
* sorybook updates
* design updates :: workspace settings page
* manage users page
* lint fixes
* fix :: styling
* stle fixes :: workspace settings
* homepage redesign
* fix :: all drawer colors and position ,teplate page revamp , database page header fixes
* imported all bulk icons
* svg to jsx : bulk icons
* minor :: cleanup
* fix :: manage users drawer
* fix :: searchboxes , userspage fixes
* fix :: all inputs and minor ui fixes
* database page ui fixes
* fix :: database and folder search functionality and iconlist in homecard
* fixed some db functionality and edge cases for longer texts
* fix :: user addition manage user page
* self review cleanup and change in bulk icon fill state
* fix :: homepage seacbar
* merging develop and resolving conflicts
* remove unwanted stories
* reverting merge with develop
* Revert "reverting merge with develop"
This reverts commit 2150c8ec0c.
* clearing out warnings
* lint fixes
* feat :: added org modal in database page
* fix :: sso loader theme
* fix :: broken styles select
* fixed icon warning and select ui
* fix :: upload bulk and user select dark mode
* merge styles with develop
* feat :: integrated new ui for database
* removing storybook files
* fix :: all bugs related to users dropdown and cleanup
* fix: user search api for organization page
* cleanup and splitting dropzone component
* fix :: overflow issue in app card time
* fix for scrollbars in homepage
* PR review fixes
* updates :: fix d=global datasource design issues , homepage responsiveness
* tj db operations
* breadcrumb bug fixes
* lint fixes
* removing logs , removed fade in in datasource and database page
* marketplace page ui fix
* removing inital users table fetch
* Pr :: review changes
* remove logs
* fix :: popover bug
* minot style fix
* fix :: remove arrow from all popovers
* fix :: for loading states
* ux :: sidebar items reorder
* style :: fix
* style fix :: templates
* fix :: qa bugs
* fix :: Qa reported bugs
* removes :: folder fetch bug
* share link and datsource bg color fix
* fixes :: rename group ,
* removed logs
* pages popover background fix
* fix :: tj db table addition ui bug
* fix :: ui bug confirm modal password disable
* modal , revert name capitalize in lists, typos fix
* typos , users page route bugfix
* users page header bugfix
* workspace archive btn , datasources form style for select
* groups updated , delete, create flow updated
* avatar bug in profile page fix
* revert styles
* fix :: for create new table nav breadcrumb not being updated
* click state bug fix in avatar
* fix bug with appcard popover
* fix :: text capitalize issue
* fix :: lints and updated icon for filter delete
* fix warnings
---------
Co-authored-by: gandharv <gandharvkumargarg@gmail.com>
Co-authored-by: Vijaykant Yadav <vjy239@gmail.com>
21 lines
1.3 KiB
JavaScript
21 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
|
|
const BookSearch = ({ fill = '#C1C8CD', width = '25', className = '', viewBox = '0 0 25 25' }) => (
|
|
<svg
|
|
width={width}
|
|
height={width}
|
|
viewBox={viewBox}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M17.5 2.78906H7.5C5.84315 2.78906 4.5 4.13221 4.5 5.78906V16.4349C5.29613 15.7223 6.34747 15.2891 7.5 15.2891H20.5V5.78906C20.5 4.13221 19.1569 2.78906 17.5 2.78906ZM10.25 8.78906C10.25 7.54642 11.2574 6.53906 12.5 6.53906C13.7426 6.53906 14.75 7.54642 14.75 8.78906C14.75 10.0317 13.7426 11.0391 12.5 11.0391C11.2574 11.0391 10.25 10.0317 10.25 8.78906ZM12.5 5.03906C10.4289 5.03906 8.75 6.71799 8.75 8.78906C8.75 10.8601 10.4289 12.5391 12.5 12.5391C13.2643 12.5391 13.9752 12.3104 14.568 11.9178L15.4697 12.8194C15.7626 13.1123 16.2374 13.1123 16.5303 12.8194C16.8232 12.5265 16.8232 12.0516 16.5303 11.7587L15.6287 10.8571C16.0213 10.2643 16.25 9.55337 16.25 8.78906C16.25 6.71799 14.5711 5.03906 12.5 5.03906ZM7.5 16.7891C5.84315 16.7891 4.5 18.1322 4.5 19.7891C4.5 21.4459 5.84315 22.7891 7.5 22.7891H17.5C19.1569 22.7891 20.5 21.4459 20.5 19.7891V16.7891H7.5Z"
|
|
fill={fill}
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default BookSearch;
|