Skip to content

Commit

Permalink
Merge branch 'fix/ONE-3599-missing-exports' into 'main'
Browse files Browse the repository at this point in the history
[ONE-3599] Added missing exports

Closes ONE-3599

See merge request procivis/one/one-react-native-components!160
  • Loading branch information
procivisAG committed Oct 22, 2024
2 parents 95f8f84 + eff43b3 commit 15180f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@procivis/one-react-native-components",
"version": "0.1.61",
"version": "0.1.62",
"author": "Procivis AG (https://procivis.ch)",
"license": "Apache-2.0",
"description": "Common Procivis ONE UI components for react-native",
Expand Down
8 changes: 4 additions & 4 deletions src/icons/history.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useAppColorScheme } from '../theme/color-scheme-context';
import { CredentialWarningIcon } from './credential';

// https://www.figma.com/file/52qDYWUMjXAGre1dcnz5bz/Procivis-One-Wallet?node-id=454-99608
const HistoryShareIcon: FC<SvgProps> = (props) => {
export const HistoryShareIcon: FC<SvgProps> = (props) => {
const colorScheme = useAppColorScheme();
return (
<Svg fill="none" height="48" viewBox="0 0 48 48" width="48" {...props}>
Expand All @@ -20,7 +20,7 @@ const HistoryShareIcon: FC<SvgProps> = (props) => {
};

// https://www.figma.com/file/52qDYWUMjXAGre1dcnz5bz/Procivis-One-Wallet?node-id=454-99609
const HistoryIssueIcon: FC<SvgProps> = (props) => {
export const HistoryIssueIcon: FC<SvgProps> = (props) => {
const colorScheme = useAppColorScheme();
return (
<Svg fill="none" height="48" viewBox="0 0 48 48" width="48" {...props}>
Expand All @@ -34,7 +34,7 @@ const HistoryIssueIcon: FC<SvgProps> = (props) => {
};

// https://www.figma.com/file/52qDYWUMjXAGre1dcnz5bz/Procivis-One-Wallet?node-id=454-99610
const HistoryRevokeIcon: FC<SvgProps> = (props) => {
export const HistoryRevokeIcon: FC<SvgProps> = (props) => {
const colorScheme = useAppColorScheme();
return (
<Svg fill="none" height="48" viewBox="0 0 48 48" width="48" {...props}>
Expand All @@ -48,7 +48,7 @@ const HistoryRevokeIcon: FC<SvgProps> = (props) => {
};

// https://www.figma.com/file/52qDYWUMjXAGre1dcnz5bz/Procivis-One-Wallet?node-id=454-99611
const HistorySuspendIcon: FC<SvgProps> = (props) => {
export const HistorySuspendIcon: FC<SvgProps> = (props) => {
const colorScheme = useAppColorScheme();
return (
<Svg fill="none" height="48" viewBox="0 0 48 48" width="48" {...props}>
Expand Down

0 comments on commit 15180f0

Please sign in to comment.