blob: 36d62a99c94082f5d7e5f8d2d7b50afc89469441 [file]
// Copyright 2013 The Flutter Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:hooks/hooks.dart';
import 'package:vector_graphics_compiler/build.dart';
void main(List<String> args) {
build(args, (BuildInput input, BuildOutputBuilder output) async {
await addSvg(
input,
output,
file: 'assets/example.svg',
treeshakeable: true,
);
});
}