Skip to content

Commit

Permalink
chore: change sort
Browse files Browse the repository at this point in the history
  • Loading branch information
tewarig committed Jan 30, 2025
1 parent 8641b46 commit 1ae82ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ const PromptIcon: IconComponent = ({ size, color, ...styledProps }) => {
const { height, width, iconColor } = useIconProps({ size, color });

return (
<Svg
{...styledProps}
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
<Svg {...styledProps} width={width} height={height} viewBox="0 0 24 24" fill="none"

Check failure on line 9 in packages/blade/src/components/Icons/PromptIcon/PromptIcon.tsx

View workflow job for this annotation

GitHub Actions / Validate Source Code

Replace `·height={height}··viewBox="0·0·24·24"··fill="none"⏎····` with `height={height}·viewBox="0·0·24·24"·fill="none"`
>
<Path
d="M2 6C2 5.44772 2.44772 5 3 5H21C21.5523 5 22 5.44772 22 6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6Z"
Expand Down
7 changes: 1 addition & 6 deletions packages/blade/src/components/Icons/SortIcon/SortIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ const SortIcon: IconComponent = ({ size, color, ...styledProps }) => {
const { height, width, iconColor } = useIconProps({ size, color });

return (
<Svg
{...styledProps}
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
<Svg {...styledProps} width={width} height={height} viewBox="0 0 24 24" fill="none"

Check failure on line 9 in packages/blade/src/components/Icons/SortIcon/SortIcon.tsx

View workflow job for this annotation

GitHub Actions / Validate Source Code

Replace `·width={width}·height={height}·viewBox="0·0·24·24"·fill="none"⏎····` with `width={width}·height={height}·viewBox="0·0·24·24"·fill="none"`
>
<Path
d="M8.54893 1.29663C8.359 1.1067 8.1014 1 7.8328 1C7.5642 1 7.3066 1.1067 7.11667 1.29663L2.29662 6.11675C1.90112 6.51225 1.90113 7.1535 2.29663 7.549C2.69214 7.9445 3.33338 7.9445 3.72889 7.54899L6.88779 4.39005V12.9499C6.88779 13.5092 7.34121 13.9627 7.90054 13.9627C8.45987 13.9627 8.9133 13.5092 8.9133 12.9499V4.5255L11.9368 7.54899C12.3323 7.9445 12.9735 7.9445 13.369 7.54899C13.7645 7.15349 13.7645 6.51225 13.369 6.11674L8.54893 1.29663Z"
Expand Down

0 comments on commit 1ae82ab

Please sign in to comment.