Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions app/assets/icons/arrow-upward.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Path } from 'react-native-svg';

const ArrowUpwardOutlined = ({ color }: { color: string }) => (
<>
<Path
d="M450-180v-485.08L222.15-437.23 180-480l300-300 300 300-42.15 42.77L510-665.08V-180h-60Z"
fill={color}
/>
</>
);

export default ArrowUpwardOutlined;
12 changes: 12 additions & 0 deletions app/assets/icons/attach-file.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Path } from 'react-native-svg';

const AttachFileOutlined = ({ color }: { color: string }) => (
<>
<Path
d="M706.92-334.23q0 97.46-67.81 165.84Q571.31-100 474.23-100q-97.46 0-165.46-68.39-68-68.38-68-165.84v-359.62q0-69.23 48.08-117.69Q336.92-860 406.15-860q69.23 0 117.31 48.46t48.08 117.69v340.39q0 40.61-28.35 69.34-28.34 28.73-68.96 28.73-40.61 0-69.34-28.53-28.73-28.54-28.73-69.54v-351.15h59.99v351.15q0 16.08 10.81 27.08t26.89 11q16.07 0 26.88-11 10.81-11 10.81-27.08v-340.77q-.62-44.31-30.85-75.04Q450.46-800 406.15-800q-44.3 0-74.84 30.92-30.54 30.93-30.54 75.23v359.62q-.62 72.54 50.15 123.38Q401.69-160 474.23-160q71.54 0 121.5-50.85 49.96-50.84 51.19-123.38v-370.38h60v370.38Z"
fill={color}
/>
</>
);

export default AttachFileOutlined;
4 changes: 4 additions & 0 deletions app/assets/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import AddBusinessOutlined from './add-business';
import AlternateEmailOutlined from './alternate-email';
import AltRouteOutlined from './alt-route';
import ApiOutlined from './api';
import ArrowUpwardOutlined from './arrow-upward';
import AssignmentTurnedInOutlined from './assignment-turned-in';
import AttachFileOutlined from './attach-file';
import BadgeOutlined from './badge';
import BalanceOutlined from './balance';
import CategoryOutlined from './category';
Expand Down Expand Up @@ -56,7 +58,9 @@ export const OutlinedIcons = {
'alternate-email': AlternateEmailOutlined,
'alt-route': AltRouteOutlined,
api: ApiOutlined,
'arrow-upward': ArrowUpwardOutlined,
'assignment-turned-in': AssignmentTurnedInOutlined,
'attach-file': AttachFileOutlined,
badge: BadgeOutlined,
balance: BalanceOutlined,
category: CategoryOutlined,
Expand Down
38 changes: 31 additions & 7 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading