hypertoxin
Version:
A themeable ReactNative component library for developing native apps
38 lines (33 loc) • 1.03 kB
JavaScript
/**
* Copyright 2016-present Tuan Le.
*
* Licensed under the MIT License.
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://opensource.org/licenses/mit-license.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*------------------------------------------------------------------------
*
* @description - Default font (using default Roboto for android).
*
* @author Tuan Le (tuan.t.lei@gmail.com)
*
*
* @flow
*
*/
; //eslint-disable-line
import createFontTemplate from './templates/create-font-template';
const RobotoFont = createFontTemplate({
fontFamily: `System`
// fontWeights: [],
// fontScalings: []
});
export default RobotoFont;