From e5021187e96b78b53203bd95d08d6818aea47d17 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Wed, 14 Jul 2021 15:10:31 +0200 Subject: New Ignite 7.0.6 app --- app/components/icon/icon.props.ts | 21 +++++++++++++++++++++ app/components/icon/icon.story.tsx | 19 +++++++++++++++++++ app/components/icon/icon.tsx | 19 +++++++++++++++++++ app/components/icon/icons/arrow-left.png | Bin 0 -> 329 bytes app/components/icon/icons/arrow-left@2x.png | Bin 0 -> 329 bytes app/components/icon/icons/bullet.png | Bin 0 -> 204 bytes app/components/icon/icons/bullet@2x.png | Bin 0 -> 204 bytes app/components/icon/icons/index.ts | 6 ++++++ 8 files changed, 65 insertions(+) create mode 100644 app/components/icon/icon.props.ts create mode 100644 app/components/icon/icon.story.tsx create mode 100644 app/components/icon/icon.tsx create mode 100644 app/components/icon/icons/arrow-left.png create mode 100644 app/components/icon/icons/arrow-left@2x.png create mode 100644 app/components/icon/icons/bullet.png create mode 100644 app/components/icon/icons/bullet@2x.png create mode 100644 app/components/icon/icons/index.ts (limited to 'app/components/icon') diff --git a/app/components/icon/icon.props.ts b/app/components/icon/icon.props.ts new file mode 100644 index 0000000..71ce0b7 --- /dev/null +++ b/app/components/icon/icon.props.ts @@ -0,0 +1,21 @@ +import { ImageStyle, StyleProp, ViewStyle } from "react-native" +import { IconTypes } from "./icons" + +export interface IconProps { + /** + * Style overrides for the icon image + */ + style?: StyleProp + + /** + * Style overrides for the icon container + */ + + containerStyle?: StyleProp + + /** + * The name of the icon + */ + + icon?: IconTypes +} diff --git a/app/components/icon/icon.story.tsx b/app/components/icon/icon.story.tsx new file mode 100644 index 0000000..d119ed4 --- /dev/null +++ b/app/components/icon/icon.story.tsx @@ -0,0 +1,19 @@ +import * as React from "react" +import { storiesOf } from "@storybook/react-native" +import { StoryScreen, Story, UseCase } from "../../../storybook/views" +import { Icon } from "./icon" + +declare let module + +storiesOf("Icon", module) + .addDecorator((fn) => {fn()}) + .add("Names", () => ( + + + + + + + + + )) diff --git a/app/components/icon/icon.tsx b/app/components/icon/icon.tsx new file mode 100644 index 0000000..4735e13 --- /dev/null +++ b/app/components/icon/icon.tsx @@ -0,0 +1,19 @@ +import * as React from "react" +import { View, ImageStyle } from "react-native" +import { AutoImage as Image } from "../auto-image/auto-image" +import { IconProps } from "./icon.props" +import { icons } from "./icons" + +const ROOT: ImageStyle = { + resizeMode: "contain", +} + +export function Icon(props: IconProps) { + const { style: styleOverride, icon, containerStyle } = props + + return ( + + + + ) +} diff --git a/app/components/icon/icons/arrow-left.png b/app/components/icon/icons/arrow-left.png new file mode 100644 index 0000000..9d607d7 Binary files /dev/null and b/app/components/icon/icons/arrow-left.png differ diff --git a/app/components/icon/icons/arrow-left@2x.png b/app/components/icon/icons/arrow-left@2x.png new file mode 100644 index 0000000..9d607d7 Binary files /dev/null and b/app/components/icon/icons/arrow-left@2x.png differ diff --git a/app/components/icon/icons/bullet.png b/app/components/icon/icons/bullet.png new file mode 100644 index 0000000..8fc256f Binary files /dev/null and b/app/components/icon/icons/bullet.png differ diff --git a/app/components/icon/icons/bullet@2x.png b/app/components/icon/icons/bullet@2x.png new file mode 100644 index 0000000..8fc256f Binary files /dev/null and b/app/components/icon/icons/bullet@2x.png differ diff --git a/app/components/icon/icons/index.ts b/app/components/icon/icons/index.ts new file mode 100644 index 0000000..00e8a59 --- /dev/null +++ b/app/components/icon/icons/index.ts @@ -0,0 +1,6 @@ +export const icons = { + back: require("./arrow-left.png"), + bullet: require("./bullet.png"), +} + +export type IconTypes = keyof typeof icons -- cgit v1.2.3