mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-29 00:59:40 +07:00
13 lines
341 B
TypeScript
13 lines
341 B
TypeScript
import MaterialCommunityIcons from "@expo/vector-icons/MaterialCommunityIcons";
|
|
import IoniconsIcon from "@expo/vector-icons/Ionicons";
|
|
import { styled } from "tamagui";
|
|
|
|
export const Icons = styled(MaterialCommunityIcons, {
|
|
color: "$color",
|
|
});
|
|
export const Ionicons = styled(IoniconsIcon, {
|
|
color: "$color",
|
|
});
|
|
|
|
export default Icons;
|