import Normal from './normal';
import Small from './small';
import Large from './large';
const normal = new Normal();
const small = new Small();
const large = new Large();
export { normal, small, large };