import React from 'react';
import rndId from 'rnd-id';
import Colors from './colors';
import Rotate from './rotate';
import calcFill from './fill';
const ids = [rndId(), rndId()];
const TritonBeta = ({
fill = null,
light = false,
disabled = false,
...rest
}) => (
{colors => (
)}
);
const Triton = ({ fill = null, light = false, disabled = false, ...rest }) => (
{colors => (
)}
);
export default ({ beta = false, direction = 'down', style = {}, ...rest }) => (
{({ style: rotateStyle }) =>
beta ? (
) : (
)
}
);