This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {IconAward, IconBrandAmazon, IconBrandAdobe} from "@tabler/icons-react" | |
export const TablerIcons = (props) => { | |
const { icon, color = "gray", size = 6, stroke = 2 } = props | |
const icons = { | |
"IconAward" : IconAward, | |
"IconBrandAmazon": IconBrandAmazon, | |
"IconBrandAdobe": IconBrandAdobe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as icons from "@tabler/icons" | |
interface Props { | |
icon: string | |
color?: string | |
size?: number | |
stroke?: number | |
} | |
export const TablerIcons = (props: Props): JSX.Element => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nomadoClient = require('nomado'); | |
const nomado = new nomadoClient({'USERNAME', 'PASSWORD'}); | |
const smsOptions = { | |
to: ['3245678901'], | |
message: 'Hello world', | |
unicode: false | |
}; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let winston = require('winston') | |
let winstonSms = require('winston-sms') | |
var logger = winston.CreateLogger({ | |
//Your custom configurations | |
// refer to https://github.com/winstonjs/winston#creating-your-own-logger | |
transports: [ | |
new winstonSms({ | |
username: 'your_nomado_username', | |
password: 'your_nomado_password', |