Skip to content

Instantly share code, notes, and snippets.

View belgamo's full-sized avatar
🎯
Focusing

Gabriel Belgamo belgamo

🎯
Focusing
View GitHub Profile
{
name: 'manager',
mode: 'development',
bail: false,
devtool: 'none',
entry: [
'/home/belgamo/Documents/Projects/animavita/node_modules/@storybook/core/dist/server/common/polyfills.js',
'/home/belgamo/Documents/Projects/animavita/node_modules/@storybook/core/dist/client/manager/index.js'
],
output: {
import React from 'react';
import styled, {css} from 'styled-components/native';
import {Slider as DefaultSlider, SliderProps} from 'react-native-elements';
import {useTheme, px2ddp} from '@animavita/theme';
const StyledSlider = styled(DefaultSlider)``;
const Slider: React.FC<SliderProps> = ({...props}) => {
const theme = useTheme();