mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
import * as React from 'react';
|
|
import type { SVGProps } from 'react';
|
|
export const SvgAlignRight = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 20 20"
|
|
style={{
|
|
color: 'inherit',
|
|
...props.style,
|
|
}}
|
|
>
|
|
<path
|
|
d="M1 1h18v2H1V1zm0 8h18v2H1V9zm0 8h18v2H1v-2zM7 5h12v2H7V5zm0 8h12v2H7v-2z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|